Fixed calendar layout reactivity issue

This commit is contained in:
2026-01-15 19:57:29 -05:00
parent 81bac9bcfb
commit 7d5e9c33bf
2 changed files with 12 additions and 4 deletions

View File

@@ -211,7 +211,7 @@ onMounted(() => {
class="3xl:w-lg 2xl:w-md border-l bg-card text-foreground flex flex-col overflow-auto scrollbar-themed"
:style="{ height: 'calc(100vh - 61px)', position: 'sticky', top: '64px' }">
<ViewCalendarEvent ref="eventViewRef" :key="currentEventID" @close="() => { router.push('/calendar'); }"
@reload="loadEvents()" @edit="(val) => { dialogRef.openDialog(null, 'edit', val) }">
@reload="loadEvents()" @load="calendarRef.getApi().updateSize()" @edit="(val) => { dialogRef.openDialog(null, 'edit', val) }">
</ViewCalendarEvent>
</aside>
</div>