Convert Eventlogs to vue

This commit is contained in:
Johannes Zellner
2025-01-25 17:09:53 +01:00
parent b43fa38350
commit f3e2f10478
9 changed files with 726 additions and 17 deletions

View File

@@ -120,7 +120,9 @@ onMounted(async () => {
// build the password identifier selection model
identifiers.value = [{ id: 'mail', label: 'Mail client' }];
const apps = await appsModel.list();
const [error, apps] = await appsModel.list();
if (error) return console.error(error);
apps.forEach(function (app) {
if (!app.manifest.addons) return;
if (app.manifest.addons.email) return;