mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 02:30:30 -08:00
Fix various bugs including refresh bug.
This commit is contained in:
parent
50e444fa1d
commit
69f4f148dc
2 changed files with 21 additions and 17 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue