diff --git a/ui/src/App.vue b/ui/src/App.vue index 1df0e07..7e208d0 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -29,12 +29,12 @@ const version = import.meta.env.VITE_APPLICATION_VERSION; background-position: center;">
Development environment (v{{ version }}). Features may be incomplete or unavailable.
You are on LOA until {{ formatDate(userStore.user?.LOAs?.[0].extended_till || userStore.user?.LOAs?.[0].end_date) }}
diff --git a/ui/src/components/calendar/ViewCalendarEvent.vue b/ui/src/components/calendar/ViewCalendarEvent.vue index 3f2fb39..cb40420 100644 --- a/ui/src/components/calendar/ViewCalendarEvent.vue +++ b/ui/src/components/calendar/ViewCalendarEvent.vue @@ -31,9 +31,14 @@ watch( { immediate: true } ); +watch(loaded, (value) => { + if (value) emit('load'); +}); + const emit = defineEmits<{ (e: 'close'): void (e: 'reload'): void + (e: 'load'): void (e: 'edit', event: CalendarEvent): void }>() @@ -179,7 +184,7 @@ defineExpose({ forceReload })Description
-+
{{ activeEvent.description }}
Declined {{ attendanceStatusSummary.notAttending }}
Name
Status
@@ -302,11 +307,14 @@ defineExpose({ forceReload })