Skip to content

Commit

Permalink
made sure that closing the calendar modal actually closes it
Browse files Browse the repository at this point in the history
Resolves #1345
  • Loading branch information
CommanderStorm committed Jul 22, 2024
1 parent a6adcba commit 0bbfc8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webclient/app/components/CalendarModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const fullCalendarRef = ref<InstanceType<typeof CalendarFull> | null>(null);
</script>

<template>
<Modal v-model="modalOpen" :title="t('title')" class="!min-w-[90vw]">
<Modal v-model="modalOpen" :title="t('title')" class="!min-w-[90vw]" @close="calendar = []">
<NuxtErrorBoundary>
<template #error="{ error }">
<Toast level="error">
Expand Down

0 comments on commit 0bbfc8f

Please sign in to comment.