diff --git a/dashboard/src/views/EventlogView.vue b/dashboard/src/views/EventlogView.vue index 6e3db7d5b..41e53bf9c 100644 --- a/dashboard/src/views/EventlogView.vue +++ b/dashboard/src/views/EventlogView.vue @@ -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);