diff --git a/dashboard/src/views/EmailEventlogView.vue b/dashboard/src/views/EmailEventlogView.vue index 27e1b34d5..9e3519c8d 100644 --- a/dashboard/src/views/EmailEventlogView.vue +++ b/dashboard/src/views/EmailEventlogView.vue @@ -24,8 +24,9 @@ const eventlogs = ref([]); const search = useDebouncedRef(''); const page = ref(1); const perPage = ref(10); -const types = reactive([]); const eventlogContainer = useTemplateRef('eventlogContainer'); +// eslint-disable-next-line prefer-const +let types = reactive([]); async function onRefresh() { refreshBusy.value = true; diff --git a/dashboard/src/views/EventlogView.vue b/dashboard/src/views/EventlogView.vue index 4a1084192..3d86e39da 100644 --- a/dashboard/src/views/EventlogView.vue +++ b/dashboard/src/views/EventlogView.vue @@ -100,8 +100,9 @@ const eventlogs = ref([]); const search = useDebouncedRef(''); const page = ref(1); const perPage = ref(40); -const actions = reactive([]); const eventlogContainer = useTemplateRef('eventlogContainer'); +// eslint-disable-next-line prefer-const +let actions = reactive([]); async function onRefresh() { refreshBusy.value = true;