Skip to content

Commit

Permalink
FIX: server list filter again
Browse files Browse the repository at this point in the history
  • Loading branch information
daverolo committed Apr 12, 2024
1 parent 5392261 commit a65c5b2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ watch(
await loadStoredConnections();
}
filteredServers.value = getFilteredServers();
filteredServers.value = null;
setTimeout(() => {
filteredServers.value = getFilteredServers();
}, 10);
},
{ deep: true }
);
Expand Down

0 comments on commit a65c5b2

Please sign in to comment.