Minor: Hide notifications for global agenda

pull/5319/head
christianbeeznst 8 months ago
parent 6ea53ae962
commit 9e5113dba6
  1. 3
      assets/vue/components/ccalendarevent/CCalendarEventForm.vue

@ -41,7 +41,7 @@
</div>
<CalendarInvitations v-model="item" />
<div v-if="agendaRemindersEnabled" class="field mt-2">
<div v-if="!isGlobal && agendaRemindersEnabled" class="field mt-2">
<BaseButton
label="Add Notification"
@click="addNotification"
@ -99,6 +99,7 @@ const props = defineProps({
default: () => {},
},
notificationsData: Array,
isGlobal: Boolean,
})
const item = computed(() => props.initialValues || props.values)

Loading…
Cancel
Save