mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Fix syntax error and disable minimap
This commit is contained in:
parent
291c5154c6
commit
c62225c866
|
@ -53,12 +53,15 @@ export default mixins(genericHelpers).extend({
|
||||||
language: 'javascript',
|
language: 'javascript',
|
||||||
tabSize: 2,
|
tabSize: 2,
|
||||||
readOnly: this.isReadOnly,
|
readOnly: this.isReadOnly,
|
||||||
|
minimap: {
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
monaco.editor.defineTheme('myTheme', {
|
monaco.editor.defineTheme('myTheme', {
|
||||||
base: 'vs',
|
base: 'vs',
|
||||||
inherit: true,
|
inherit: true,
|
||||||
rules: [{ background: 'f5f2f0' }],
|
rules: [],
|
||||||
colors: {
|
colors: {
|
||||||
'editor.background': '#f5f2f0',
|
'editor.background': '#f5f2f0',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue