Hello
Monaco, can not input any text
running 2.0.0.beta1
browser
Safari
Chrome Mac
Chrome Windows
I can open a already written function, cannot write, be it in a function or any other text input.
in the function node, on the upper left corner, a shadow appears but and some "noise".
see my config file
// Customising the editor
editorTheme: {
codeEditor: {
lib: "monaco"
}
},
codeEditor: {
/** Select the text editor component used by the editor.
* Defaults to "ace", but can be set to "ace" or "monaco"
*/
lib: 'monaco', // 'ace',
options: {
/** The follow options only apply if the editor is set to "monaco"
*
* theme - must match the file name of a theme in
* packages/node_modules/@node-red/editor-client/src/vendor/monaco/dist/theme
* e.g. "tomorrow-night", "upstream-sunburst", "github", "my-theme"
*/
theme: 'vs-dark', // 'vs',
/** other overrides can be set e.g. fontSize, fontFamily, fontLigatures etc.
* for the full list, see https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.istandaloneeditorconstructionoptions.html
*/
fontSize: 14,
//fontFamily: "Cascadia Code, Fira Code, Consolas, 'Courier New', monospace",
fontFamily: "Consolas, 'Courier New', monospace",
fontLigatures: false,
colorDecorators: true,
dragAndDrop: true,
linkedEditing: true,
minimap: {
enabled: false,
},
mouseWheelZoom: true,
showFoldingControls: 'always',
useTabStops: true,
},
},
}