From: Alexander Moisseev Date: Tue, 25 Mar 2025 16:42:18 +0000 (+0300) Subject: [WebUI] Grey out not loaded maps in the Maps table X-Git-Tag: 3.12.0~52^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F5408%2Fhead;p=thirdparty%2Frspamd.git [WebUI] Grey out not loaded maps in the Maps table --- diff --git a/interface/js/app/config.js b/interface/js/app/config.js index 48cac10872..57e7ee37b8 100644 --- a/interface/js/app/config.js +++ b/interface/js/app/config.js @@ -130,6 +130,7 @@ define(["jquery", "app/common"], }); const $tr = $("").append($td).append($("" + item.type + "")); + if (!item.loaded) $tr.addClass("table-light opacity-50"); const $span = $('' + item.uri + "").data("item", item); $span.wrap("").parent().appendTo($tr);