Reset page when changing pageSize (#16412)

This commit is contained in:
Nitwel
2022-11-12 02:45:23 +01:00
committed by GitHub
parent 8e400504ea
commit 32a363b803

View File

@@ -313,7 +313,7 @@ const query = computed<RelationQueryMultiple>(() => {
return q;
});
watch([search, searchFilter], () => {
watch([search, searchFilter, limit], () => {
page.value = 1;
});