From f1ceb1a2a32e535f4006a163b96b7819d514777f Mon Sep 17 00:00:00 2001 From: Antonia Schwennesen <53372671+zophiana@users.noreply.github.com> Date: Sat, 1 Feb 2025 08:54:59 +0100 Subject: [PATCH 1/2] fix(calendar-list): restrict calendar visibility toggle to checkbox only Previously, clicking anywhere on the calendar name would toggle its visibility, leading to accidental hiding of calendars. Now the visibility can only be toggled by clicking the checkbox/bullet icon. Fixes #3027 Signed-off-by: Antonia Schwennesen <53372671+zophiana@users.noreply.github.com> --- .../AppNavigation/CalendarList/CalendarListItem.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/AppNavigation/CalendarList/CalendarListItem.vue b/src/components/AppNavigation/CalendarList/CalendarListItem.vue index fee0ee0c5d..7fc13ecd30 100644 --- a/src/components/AppNavigation/CalendarList/CalendarListItem.vue +++ b/src/components/AppNavigation/CalendarList/CalendarListItem.vue @@ -8,15 +8,16 @@ :aria-description="descriptionAppNavigationItem" :name="calendarDisplayName || $t('calendar', 'Untitled calendar')" :class="{deleted: isBeingDeleted, disabled: !calendar.enabled}" - @click.prevent.stop="toggleEnabled" @update:menuOpen="actionsMenuOpen = $event">