From 4b4975666c28ddf9036e3499563b7e41a524ee6c Mon Sep 17 00:00:00 2001 From: YONGJAE LEE Date: Sat, 30 Aug 2025 13:11:33 +0900 Subject: [PATCH] [ZEPPELIN-6310] fix: When paragraph to edit, word wrap doesn't work --- .../notebook/paragraph/code-editor/code-editor.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/zeppelin-web-angular/src/app/pages/workspace/notebook/paragraph/code-editor/code-editor.component.ts b/zeppelin-web-angular/src/app/pages/workspace/notebook/paragraph/code-editor/code-editor.component.ts index 415051d409c..b19e91d1df9 100644 --- a/zeppelin-web-angular/src/app/pages/workspace/notebook/paragraph/code-editor/code-editor.component.ts +++ b/zeppelin-web-angular/src/app/pages/workspace/notebook/paragraph/code-editor/code-editor.component.ts @@ -157,6 +157,7 @@ export class NotebookParagraphCodeEditorComponent implements OnChanges, OnDestro scrollBeyondLastLine: false, contextmenu: false, matchBrackets: 'always', + wordWrap: 'on', scrollbar: { handleMouseWheel: false, alwaysConsumeMouseWheel: false