Fix various bugs including refresh bug.

This commit is contained in:
Sj-Si
2024-01-18 12:13:33 -05:00
parent 50e444fa1d
commit 69f4f148dc
2 changed files with 21 additions and 17 deletions

View File

@@ -55,8 +55,11 @@ function setupExtraNetworksForTab(tabname) {
if (searchOnly && searchTerm.length < 4) {
visible = false;
}
elem.style.display = visible ? "" : "none";
if (visible) {
elem.classList.remove("hidden");
} else {
elem.classList.add("hidden");
}
});
applySort();