From 6c128a35dd91ad968a61ae2a68f3245ac2ea5723 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?=
<71827178+bosiraphael@users.noreply.github.com>
Date: Mon, 30 Mar 2026 16:35:39 +0200
Subject: [PATCH] Fix cropped calendar event name (#19126)
## Before
## After
---
.../modules/activities/calendar/components/CalendarEventRow.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/twenty-front/src/modules/activities/calendar/components/CalendarEventRow.tsx b/packages/twenty-front/src/modules/activities/calendar/components/CalendarEventRow.tsx
index 9e846267eb..66fcce2cef 100644
--- a/packages/twenty-front/src/modules/activities/calendar/components/CalendarEventRow.tsx
+++ b/packages/twenty-front/src/modules/activities/calendar/components/CalendarEventRow.tsx
@@ -26,7 +26,7 @@ type CalendarEventRowProps = {
const StyledContainer = styled.div<{ showTitle?: boolean }>`
align-items: center;
cursor: ${({ showTitle }) => (showTitle ? 'pointer' : 'not-allowed')};
- display: inline-flex;
+ display: flex;
gap: ${themeCssVariables.spacing[3]};
height: ${themeCssVariables.spacing[6]};
position: relative;