diff --git a/src/lib/components/admin/Users/UserList.svelte b/src/lib/components/admin/Users/UserList.svelte index 97b647ba5..93490be59 100644 --- a/src/lib/components/admin/Users/UserList.svelte +++ b/src/lib/components/admin/Users/UserList.svelte @@ -97,6 +97,10 @@ } }; + $: if (query) { + page = 1; + } + $: if (query !== null && page !== null && orderBy !== null && direction !== null) { getUserList(); }