Added user change validation and read status

This might be better to just refetch the data with anonymous authorizations
This commit is contained in:
Alexis
2024-12-17 17:17:13 +01:00
parent 49574d8ef1
commit 535a73162c
6 changed files with 23 additions and 18 deletions

View File

@@ -46,15 +46,14 @@ onMounted(() => {
<template>
<div class="h-full w-full relative">
{{ isReadOnly }}
<div class="h-full grid grid-rows-[auto,1fr]">
<CalendarMenu />
<component :is="currentViewComponent" />
<CalendarSearch />
<CalendarDialogUpdateEvent />
<CalendarDialogDeleteEvent />
<CalendarDialogUpdateEvent v-if="!isReadOnly" />
<CalendarDialogDeleteEvent v-if="!isReadOnly" />
</div>
</div>
</template>