From 2d2069cae6d398ead301aed2fe34d54b1c72df1b Mon Sep 17 00:00:00 2001
From: Alexis <35.alexis.pele@gmail.com>
Date: Fri, 25 Apr 2025 15:23:03 +0200
Subject: [PATCH] Fixed hydration mismatches
---
components/calendar/SearchCTA.vue | 26 +++++++++++++++++++
.../calendar/dialog/QuickCreateEvent.vue | 22 +++++++++-------
components/calendar/menu/Menu.vue | 20 +-------------
3 files changed, 39 insertions(+), 29 deletions(-)
create mode 100644 components/calendar/SearchCTA.vue
diff --git a/components/calendar/SearchCTA.vue b/components/calendar/SearchCTA.vue
new file mode 100644
index 0000000..eea4d6f
--- /dev/null
+++ b/components/calendar/SearchCTA.vue
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+ {{ $t('entity.advancedSearch.title') }}
+
+
+
+
diff --git a/components/calendar/dialog/QuickCreateEvent.vue b/components/calendar/dialog/QuickCreateEvent.vue
index 875c11d..b142245 100644
--- a/components/calendar/dialog/QuickCreateEvent.vue
+++ b/components/calendar/dialog/QuickCreateEvent.vue
@@ -23,17 +23,19 @@ const breakpoints = useBreakpoints(
-
-
+
+
+
-
- {{ $t("entity.calendar.event.newEvent") }}
-
-
+
+ {{ $t("entity.calendar.event.newEvent") }}
+
+
+
-import { breakpointsTailwind, useBreakpoints } from "@vueuse/core"
import { useCalendar } from "~/stores/CalendarStore"
-import { PhMagnifyingGlass } from "@phosphor-icons/vue"
-
-const { revealAdvancedSearch, } = useCalendar()
const { isReadOnly, defaultDate } = storeToRefs(useCalendar())
-
-const breakpoints = useBreakpoints(
- breakpointsTailwind
-)
@@ -29,17 +21,7 @@ const breakpoints = useBreakpoints(