From ac4612232c0b3f10ff78ccddf501786b4a1f4e27 Mon Sep 17 00:00:00 2001 From: Guillaume Jacquart Date: Mon, 30 Jun 2025 11:37:26 +0200 Subject: [PATCH] fix(editor): Reset wrapping for variable value to prevent horizontal scrolling (#16772) Co-authored-by: Csaba Tuncsik --- packages/frontend/editor-ui/src/views/VariablesView.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/frontend/editor-ui/src/views/VariablesView.vue b/packages/frontend/editor-ui/src/views/VariablesView.vue index 49d1fa15f11..78664ba9c1d 100644 --- a/packages/frontend/editor-ui/src/views/VariablesView.vue +++ b/packages/frontend/editor-ui/src/views/VariablesView.vue @@ -400,6 +400,10 @@ onMounted(() => { opacity: 1; } } + + td:nth-child(2) { + white-space: normal; + } } @media screen and (max-width: $breakpoint-sm) {