mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -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',
|
||||
tabSize: 2,
|
||||
readOnly: this.isReadOnly,
|
||||
minimap: {
|
||||
enabled: false,
|
||||
},
|
||||
});
|
||||
|
||||
monaco.editor.defineTheme('myTheme', {
|
||||
base: 'vs',
|
||||
inherit: true,
|
||||
rules: [{ background: 'f5f2f0' }],
|
||||
rules: [],
|
||||
colors: {
|
||||
'editor.background': '#f5f2f0',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue