diff --git a/frontend/components/EntityShowSubCreatedDocuments.vue b/frontend/components/EntityShowSubCreatedDocuments.vue index 5ceeccc..51e1d88 100644 --- a/frontend/components/EntityShowSubCreatedDocuments.vue +++ b/frontend/components/EntityShowSubCreatedDocuments.vue @@ -267,13 +267,8 @@ const selectItem = (item) => { :ui="{ divide: 'divide-gray-200 dark:divide-gray-800' }" :on-select="(row) => selectItem(row.original)" style="height: 70vh" + :empty="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Belege anzuzeigen' }" > - - - - Keine Belege anzuzeigen - - {{ dataStore.documentTypesForCreation[row.original.type].labelSingle }} diff --git a/frontend/components/EntityShowSubOwnAccountsStatements.vue b/frontend/components/EntityShowSubOwnAccountsStatements.vue index 36d60c7..2793f30 100644 --- a/frontend/components/EntityShowSubOwnAccountsStatements.vue +++ b/frontend/components/EntityShowSubOwnAccountsStatements.vue @@ -254,14 +254,8 @@ const selectAllocation = (allocationLike) => { :columns="normalizeTableColumns(columns)" :on-select="selectAllocation" class="w-full" + :empty="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Buchungen im ausgewählten Zeitraum' }" > - - - - Keine Buchungen im ausgewählten Zeitraum - - - {{ useCurrency(row.original.amount) }} {{ useCurrency(row.original.amount) }} diff --git a/frontend/components/EntityShowSubTimes.vue b/frontend/components/EntityShowSubTimes.vue index f0834d2..112250b 100644 --- a/frontend/components/EntityShowSubTimes.vue +++ b/frontend/components/EntityShowSubTimes.vue @@ -69,13 +69,8 @@ const columns = [ class="mt-3" :columns="normalizeTableColumns(columns)" :data="props.item.times" + :empty="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Noch keine Einträge' }" > - - - - Noch keine Einträge - - - - Keine offenen Aufgaben - \ No newline at end of file + diff --git a/frontend/pages/export/index.vue b/frontend/pages/export/index.vue index fcd7521..0ca8124 100644 --- a/frontend/pages/export/index.vue +++ b/frontend/pages/export/index.vue @@ -154,6 +154,7 @@ const createExport = async () => { { key: 'type', label: 'Typ' }, { key: 'download', label: 'Download' }, ])" + :empty="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Exporte anzuzeigen' }" > {{dayjs(row.original.created_at).format("DD.MM.YYYY HH:mm")}} diff --git a/frontend/pages/settings/banking/index.vue b/frontend/pages/settings/banking/index.vue index 03f5715..149fa34 100644 --- a/frontend/pages/settings/banking/index.vue +++ b/frontend/pages/settings/banking/index.vue @@ -203,6 +203,7 @@ setupPage() label: 'Saldo' }, ])" + :empty="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Bankkonten anzuzeigen' }" > Ausgelaufen diff --git a/frontend/pages/staff/profiles/index.vue b/frontend/pages/staff/profiles/index.vue index a118a40..9920ef0 100644 --- a/frontend/pages/staff/profiles/index.vue +++ b/frontend/pages/staff/profiles/index.vue @@ -79,13 +79,8 @@ :columns="normalizeTableColumns(columns)" :loading="pending" :on-select="(row) => navigateTo(`/staff/profiles/${row.original?.id || row.id}`)" - > - - - Keine Mitarbeiterprofile gefunden. - - - + :empty="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Mitarbeiterprofile gefunden' }" + />
Keine Buchungen im ausgewählten Zeitraum
Keine offenen Aufgaben