diff --git a/public/index.html b/public/index.html index 36e0bb4..5831b62 100644 --- a/public/index.html +++ b/public/index.html @@ -292,7 +292,7 @@ - + diff --git a/public/js/app.js b/public/js/app.js index 3e4e873..08a1f7d 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -759,6 +759,15 @@ currentSort = { column: 'up', direction: 'desc' }; localStorage.removeItem('serverListSort'); + // Clear filters + if (dom.serverSearchFilter) { + dom.serverSearchFilter.value = ''; + } + if (dom.sourceFilter) { + dom.sourceFilter.value = 'all'; + } + currentSourceFilter = 'all'; + // Update UI headers const headers = document.querySelectorAll('.server-table th.sortable'); headers.forEach(th => {