diff --git a/src/plugins/events/components/overview/AgendaView.vue b/src/plugins/events/components/overview/AgendaView.vue index 2beb5f0..2389d96 100644 --- a/src/plugins/events/components/overview/AgendaView.vue +++ b/src/plugins/events/components/overview/AgendaView.vue @@ -133,8 +133,8 @@ export default defineComponent({ const calendarRealView = computed(() => (calendarDays.value != 7 ? 'day' : 'week')); const calendarDays = computed(() => - // <= 1023 is the breakpoint for sm to md - calendarView.value == 'day' ? 1 : windowWidth.value <= 1023 ? 3 : 7 + // <= 1023 is the breakpoint for md + calendarView.value == 'day' ? 1 : windowWidth.value <= 1439 ? 3 : 7 ); const events = ref({}); const editor = ref(undefined);