From 658980d9fef57d4560ba7bfb1afed957d5087daf Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Sun, 23 Nov 2025 18:43:38 -0500 Subject: [PATCH] fixed text handling on excessively long titles --- ui/src/pages/Calendar.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ui/src/pages/Calendar.vue b/ui/src/pages/Calendar.vue index 5f627ff..1ad7875 100644 --- a/ui/src/pages/Calendar.vue +++ b/ui/src/pages/Calendar.vue @@ -266,11 +266,11 @@ onMounted(() => { :style="{ height: 'calc(100vh - 61px)', position: 'sticky', top: '64px' }">
-

+

{{ activeEvent?.name || 'Event' }}

@@ -294,7 +294,7 @@ onMounted(() => { - Owner: {{ activeEvent.creator_name || "Unknown User" }} + Created by: {{ activeEvent.creator_name || "Unknown User" }} @@ -377,6 +377,8 @@ onMounted(() => { /* no internal scroll for month grid */ } + + /* Subtle borders everywhere */ :global(.fc .fc-scrollgrid), :global(.fc .fc-scrollgrid td),