Reset the eventlog page on filter changes

This commit is contained in:
Johannes Zellner
2025-07-03 15:07:31 +02:00
parent 70b57b078d
commit bb98fe824e

View File

@@ -93,6 +93,8 @@ const actions = reactive([]);
async function onRefresh() {
refreshBusy.value = true;
page.value = 1;
const [error, result] = await eventlogsModel.search(actions.join(','), search.value, page.value, perPage.value);
if (error) return console.error(error);