From c0199bc3a24278c4d16a212f8563b590f2d37d64 Mon Sep 17 00:00:00 2001 From: Colin Harrison Date: Thu, 24 Jul 2025 14:44:30 -0700 Subject: [PATCH] fix text wrapping in comments --- .../comment-box-modal/nz-modal-comment-box.component.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/gui/src/app/workspace/component/workflow-editor/comment-box-modal/nz-modal-comment-box.component.scss b/core/gui/src/app/workspace/component/workflow-editor/comment-box-modal/nz-modal-comment-box.component.scss index de481da276e..24799304093 100644 --- a/core/gui/src/app/workspace/component/workflow-editor/comment-box-modal/nz-modal-comment-box.component.scss +++ b/core/gui/src/app/workspace/component/workflow-editor/comment-box-modal/nz-modal-comment-box.component.scss @@ -24,8 +24,11 @@ width: 100%; p { - word-break: break-all; + word-wrap: break-word; + overflow-wrap: break-word; + word-break: normal; white-space: normal; + hyphens: auto; } }