Corrected Errors in Workintimes

Introduced Error Logging to Supabase
This commit is contained in:
2025-01-07 16:43:24 +01:00
parent ff1685a721
commit 26fef320ef
7 changed files with 162 additions and 102 deletions

View File

@@ -15,24 +15,29 @@
<UDashboardPanelContent>
<UDashboardCard
class="mt-3"
title="Anwesenheiten"
v-if="dataStore.getStartedWorkingTimes().length > 0"
v-if="dataStore.getStartedWorkingTimes().length > 0"
>
<p v-for="time in dataStore.getStartedWorkingTimes()"><UIcon name="i-heroicons-check"/>{{profileStore.getProfileById(time.profile).fullName}}</p>
</UDashboardCard>
<UDashboardCard
:ui="{ body: { padding: '!pb-3 !px-5' }}"
class="mt-3"
>
<display-income-and-expenditure/>
</UDashboardCard>
<UDashboardCard
class="w-1/3 mt-3"
:ui="{ body: { padding: '!py-5 !px-5' }}"
>
<display-open-balances/>
</UDashboardCard>
<UDashboardCard
class="w-1/3 mt-3"
>
<display-running-time/>
</UDashboardCard>
</UDashboardPanelContent>
</UDashboardPanel>
</UDashboardPage>