[ES|QL] Fixes words wrapping (#167025)

## Summary

Fixes https://github.com/elastic/kibana/issues/166648

<img width="2083" alt="image"
src="0374c577-dc52-4453-b220-a6dfc12d79e3">
This commit is contained in:
Stratoula Kalafateli 2023-09-25 10:38:46 +03:00 committed by GitHub
parent b98b6d08cd
commit 14e4987ae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -453,7 +453,7 @@ export const TextBasedLanguagesEditor = memo(function TextBasedLanguagesEditor({
scrollBeyondLastLine: false,
quickSuggestions: true,
minimap: { enabled: false },
wordWrap: isWordWrapped ? 'on' : 'off',
wordWrap: 'on',
lineNumbers: showLineNumbers ? 'on' : 'off',
theme: language === 'esql' ? ESQL_THEME_ID : isDark ? 'vs-dark' : 'vs',
lineDecorationsWidth: 12,