We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79664f4 commit ab258adCopy full SHA for ab258ad
CHANGELOG.md
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
5
6
## [Unreleased]
7
8
+### Fixed
9
+
10
+- Enable word wrapping in the JSON editor.
11
12
## [1.1.0] - 2025-11-30
13
14
### Added
src/devtools/utils/json-editor.ts
@@ -14,6 +14,7 @@ export function createJSONEditor(
const editor = basicEditor(container, {
15
value: initialValue,
16
language: "json",
17
+ wordWrap: true,
18
theme: systemScheme === "light" ? "night-owl-light" : "night-owl",
19
});
20
editor.container.addEventListener("keydown", (event) => {
0 commit comments