This commit is contained in:
2025-01-20 11:01:28 +01:00
parent e655d9cecd
commit 33818033a4
3 changed files with 6 additions and 5 deletions

View File

@@ -98,7 +98,6 @@ const columns = computed(() => templateColumns.filter((column) => selectedColumn
<template #right>
<UTooltip title="In der Beta nicht verfügbar">
<UButton
:disabled="true"
@click="showEmailAddressModal = true"
>
+ E-Mail Konto
@@ -115,10 +114,10 @@ const columns = computed(() => templateColumns.filter((column) => selectedColumn
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine E-Mail Konten anzuzeigen' }"
>
<template #profiles-data="{row}">
{{row.profiles.map(i => profiles.find(x => x.id === i).fullName).join(", ")}}
{{row.profiles}}
</template>
<template #mailboxes-data="{row}">
{{row.mailboxes.map(i => i.name).join(", ")}}
{{row.mailboxes}}
</template>
</UTable>
</template>