diff --git a/src/lib/components/admin/Users/UserList.svelte b/src/lib/components/admin/Users/UserList.svelte index 97b647ba56..93490be59e 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(); }