WebUI: Show file filter when Content tab selected on load

This fixes a bug where the file filter is only shown when the Content tab is switched to. The filter is not being shown if the Content tab is already selected on page load (due to being previously selected).

PR #21657.
This commit is contained in:
Thomas Piccirello 2024-10-25 12:28:01 -07:00 committed by GitHub
commit e8dc6b3f73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1506,6 +1506,10 @@ window.addEventListener("DOMContentLoaded", () => {
const showFilesFilter = (selectedTab.id === "propFilesLink") && !this.isCollapsed;
document.getElementById("torrentFilesFilterToolbar").classList.toggle("invisible", !showFilesFilter);
});
const showFilesFilter = (lastUsedTab === "propFilesLink") && !this.isCollapsed;
if (showFilesFilter)
document.getElementById("torrentFilesFilterToolbar").classList.remove("invisible");
},
column: "mainColumn",
height: prop_h