From 207ba00ad2f93d3899f589011aae8b163b2cca01 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Wed, 26 Jan 2022 11:21:11 +0000 Subject: [PATCH] Add editorTheme.tours property to default settings file --- packages/node_modules/node-red/settings.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/node_modules/node-red/settings.js b/packages/node_modules/node-red/settings.js index 1b8b8e309..89994e9c3 100644 --- a/packages/node_modules/node-red/settings.js +++ b/packages/node_modules/node-red/settings.js @@ -328,6 +328,12 @@ module.exports = { * a collection of themes to chose from. */ //theme: "", + + /** To disable the 'Welcome to Node-RED' tour that is displayed the first + * time you access the editor for each release of Node-RED, set this to false + */ + //tours: false, + palette: { /** The following property can be used to order the categories in the editor * palette. If a node's category is not in the list, the category will get @@ -336,6 +342,7 @@ module.exports = { */ //categories: ['subflows', 'common', 'function', 'network', 'sequence', 'parser', 'storage'], }, + projects: { /** To enable the Projects feature, set this value to true */ enabled: false, @@ -349,6 +356,7 @@ module.exports = { mode: "manual" } }, + codeEditor: { /** Select the text editor component used by the editor. * Defaults to "ace", but can be set to "ace" or "monaco"