fixed the filter pagination bug

This commit is contained in:
2026-02-12 00:53:36 -05:00
parent 0f29dabeee
commit 2759167ce6

View File

@@ -118,6 +118,7 @@
watch(filters, () => {
if (debounceTimer) clearTimeout(debounceTimer);
debounceTimer = setTimeout(() => {
setPage(1); //reset page number when filters change to avoid that one annoying bug eagle keeps finding
fetchMembers();
}, 300);
}, { deep: true });