Replace emails eventlog as vuejs view

This commit is contained in:
Johannes Zellner
2025-03-10 16:16:04 +01:00
parent d633029d08
commit 8eec3cddb5
5 changed files with 191 additions and 4 deletions

View File

@@ -104,7 +104,7 @@ const actions = reactive([]);
async function onRefresh() {
refreshBusy.value = true;
const [error, result] = await eventlogsModel.search(actions.map(a => a.id).join(','), search.value, page.value, perPage.value);
const [error, result] = await eventlogsModel.search(actions.join(','), search.value, page.value, perPage.value);
if (error) return console.error(error);
eventlogs.value = result.map(e => {