Minor: Hide notifications for global agenda

pull/5322/head
christianbeeznst 8 months ago committed by Angel Fernando Quiroz Campos
parent 2a7cecc3f6
commit b1cf9719c1
  1. 6
      assets/vue/components/ccalendarevent/CCalendarEventForm.vue

@ -25,7 +25,10 @@
</div>
<CalendarInvitations v-model="item" />
<CalendarRemindersEditor v-model="item" />
<CalendarRemindersEditor
v-if="!isGlobal"
v-model="item"
/>
<slot />
</form>
@ -58,6 +61,7 @@ const props = defineProps({
type: Object,
default: () => {},
},
isGlobal: Boolean,
})
const item = computed(() => props.initialValues || props.values)

Loading…
Cancel
Save