Browse Source

[WebUI] Grey out not loaded maps in the Maps table

pull/5408/head
Alexander Moisseev 8 months ago
parent
commit
7a96fdfb09
  1. 1
      interface/js/app/config.js

1
interface/js/app/config.js

@ -130,6 +130,7 @@ define(["jquery", "app/common"],
});
const $tr = $("<tr>").append($td).append($("<td>" + item.type + "</td>"));
if (!item.loaded) $tr.addClass("table-light opacity-50");
const $span = $('<span class="map-link">' + item.uri + "</span>").data("item", item);
$span.wrap("<td>").parent().appendTo($tr);

Loading…
Cancel
Save