From 0d189da32801ab8d843ebd9cff1b0d5bf71d19b6 Mon Sep 17 00:00:00 2001 From: Ivan Bondarenko Date: Fri, 17 Jul 2026 20:55:02 +0200 Subject: [PATCH] fix: wrap long words in timeline to prevent horizontal scroll (#7819) --- .../components/Domain/Recipe/RecipeTimelineItem.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Domain/Recipe/RecipeTimelineItem.vue b/frontend/app/components/Domain/Recipe/RecipeTimelineItem.vue index a9b4373b0..2514d1d14 100644 --- a/frontend/app/components/Domain/Recipe/RecipeTimelineItem.vue +++ b/frontend/app/components/Domain/Recipe/RecipeTimelineItem.vue @@ -25,7 +25,7 @@ {{ $d(new Date(event.timestamp || "")) }} - + {{ event.subject }} @@ -68,7 +68,7 @@ - {{ event.subject }} + {{ event.subject }} -
+
@@ -179,4 +179,8 @@ const eventImageUrl = computed(() => { .v-card::after { display: none; } + +.break-word { + overflow-wrap: anywhere; +}