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 81a6ad4 commit 810b3adCopy full SHA for 810b3ad
src/views/editor/es-editor/display-editor.vue
@@ -16,10 +16,11 @@ let displayEditor: Editor | null = null;
16
const displayEditorRef = ref();
17
const setupDisplayEditor = () => {
18
displayEditor = monaco.editor.create(displayEditorRef.value, {
19
- automaticLayout: true,
20
theme: getEditorTheme(),
21
value: '',
22
language: 'json',
+ automaticLayout: true,
23
+ scrollBeyondLastLine: false,
24
minimap: { enabled: false },
25
});
26
};
0 commit comments