From b73357369fe91a260f9215fac3c01c8d8e7162e3 Mon Sep 17 00:00:00 2001 From: Dana <152518854+dana-gill@users.noreply.github.com> Date: Mon, 7 Jul 2025 17:43:22 +0200 Subject: [PATCH] fix(editor): Fit long words for draggable fields (#17063) --- .../AssignmentCollection/AssignmentCollection.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/frontend/editor-ui/src/components/AssignmentCollection/AssignmentCollection.vue b/packages/frontend/editor-ui/src/components/AssignmentCollection/AssignmentCollection.vue index 32ff7a4ae8..e983293bc1 100644 --- a/packages/frontend/editor-ui/src/components/AssignmentCollection/AssignmentCollection.vue +++ b/packages/frontend/editor-ui/src/components/AssignmentCollection/AssignmentCollection.vue @@ -244,7 +244,11 @@ function optionSelected(action: string) { min-height: 24px; > span { - white-space: nowrap; + word-wrap: break-word; + overflow-wrap: break-word; + word-break: break-word; + white-space: normal; + max-width: 100%; } }