We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaafcb9 commit 954008eCopy full SHA for 954008e
1 file changed
public/js/app.js
@@ -1018,6 +1018,7 @@ async function renderServers() {
1018
if (activeFilter !== 'all') {
1019
filtered = filtered.filter(s => {
1020
if (activeFilter === 'installing') return s.status === 'installing' || s.installed === 0 || s.installed === '0' || s.installed === false;
1021
+ if (activeFilter === 'active') return s.status !== 'suspended' && !(s.status === 'installing' || s.installed === 0 || s.installed === '0' || s.installed === false);
1022
return s.status === activeFilter;
1023
});
1024
}
0 commit comments