Skip to content

Commit

Permalink
fix: fix search request not being resolved in order (#4896)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Sep 30, 2024
1 parent e40b2d5 commit cbebadb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/SpaceDelegates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ useInfiniteScroll(
{ distance: 500 }
);
watch(searchInputDebounced, () => {
loadDelegate(searchInput.value);
watch(searchInputDebounced, async () => {
await loadDelegate(searchInput.value);
});
watch(matchFilter, () => {
Expand Down

0 comments on commit cbebadb

Please sign in to comment.