mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Allow mermaid theme to be set via editorTheme and custom themes
Fixes #4274
This commit is contained in:
		| @@ -339,6 +339,8 @@ module.exports = { | ||||
|                 } | ||||
|                 theme.codeEditor = theme.codeEditor || {} | ||||
|                 theme.codeEditor.options = Object.assign({}, themePlugin.monacoOptions, theme.codeEditor.options); | ||||
|  | ||||
|                 theme.mermaid = Object.assign({}, themePlugin.mermaidOptions, theme.mermaid) | ||||
|             } | ||||
|             activeThemeInitialised = true; | ||||
|         } | ||||
|   | ||||
| @@ -15,7 +15,8 @@ RED.editor.mermaid = (function () { | ||||
|                     'vendor/mermaid/mermaid.min.js', | ||||
|                     function (data, stat, jqxhr) { | ||||
|                         mermaid.initialize({ | ||||
|                             startOnLoad: false | ||||
|                             startOnLoad: false, | ||||
|                             theme: RED.settings.get('mermaid', {}).theme | ||||
|                         }) | ||||
|                         loaded = true | ||||
|                         while(pendingEvals.length > 0) { | ||||
|   | ||||
| @@ -99,6 +99,9 @@ var api = module.exports = { | ||||
|                     safeSettings.markdownEditor = runtime.settings.editorTheme.markdownEditor || {}; | ||||
|                     safeSettings.markdownEditor.mermaid = safeSettings.markdownEditor.mermaid || { enabled: true }; | ||||
|                 } | ||||
|                 if (runtime.settings.editorTheme.mermaid) { | ||||
|                     safeSettings.mermaid = runtime.settings.editorTheme.mermaid | ||||
|                 } | ||||
|             } | ||||
|             safeSettings.libraries = runtime.library.getLibraries(); | ||||
|             if (util.isArray(runtime.settings.paletteCategories)) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user