From 7a96fdfb09602148002df77f2c25a55a027e7ddf Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Tue, 25 Mar 2025 19:42:18 +0300 Subject: [PATCH] [WebUI] Grey out not loaded maps in the Maps table --- interface/js/app/config.js | 1 + 1 file changed, 1 insertion(+) 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); -- 2.47.3