chore: update watchlist features and fixes

This commit is contained in:
root
2026-02-28 09:22:57 +00:00
parent 4c96d0c1c5
commit 20bcc75b9b
64 changed files with 5193 additions and 77 deletions
+10
View File
@@ -242,6 +242,16 @@ function switchTab(tabName) {
loadHomeContent();
}
}
// Load watchlist content when switching to watchlist tab
if (tabName === 'watchlist') {
if (typeof loadSchedulerStatus === 'function') {
loadSchedulerStatus();
}
if (typeof displayWatchlist === 'function') {
displayWatchlist();
}
}
}