From 6a1fe7fdd5d1ac4ce6c934bad56d7442bb28c1b4 Mon Sep 17 00:00:00 2001 From: Ladislav Misurak Date: Thu, 21 Nov 2024 13:57:28 +0100 Subject: [PATCH] chore: add missing conf --- .../CodeEditor/codeGenerators/emailEditorCodeGenerator.js | 1 + src/components/EmailEditor/store/emailEditorConfig.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/AppElements/components/CodeEditor/codeGenerators/emailEditorCodeGenerator.js b/src/components/AppElements/components/CodeEditor/codeGenerators/emailEditorCodeGenerator.js index 39f73b4..10bc4eb 100644 --- a/src/components/AppElements/components/CodeEditor/codeGenerators/emailEditorCodeGenerator.js +++ b/src/components/AppElements/components/CodeEditor/codeGenerators/emailEditorCodeGenerator.js @@ -292,6 +292,7 @@ const calculateToolboxes = (editorConfig, indent) => { ${"\t".repeat(indent)}body: ${editorConfig.settings.toolboxes.body}, ${"\t".repeat(indent)}fullWidth: ${editorConfig.settings.toolboxes.fullWidth}, ${"\t".repeat(indent)}text: ${editorConfig.settings.toolboxes.text}, +${"\t".repeat(indent)}typedText: ${editorConfig.settings.toolboxes.typedText}, ${"\t".repeat(indent)}button: ${editorConfig.settings.toolboxes.button}, ${"\t".repeat(indent)}box: ${editorConfig.settings.toolboxes.box}, ${"\t".repeat(indent)}multiColumn: ${editorConfig.settings.toolboxes.multiColumn}, diff --git a/src/components/EmailEditor/store/emailEditorConfig.js b/src/components/EmailEditor/store/emailEditorConfig.js index 8275015..5aa33a4 100644 --- a/src/components/EmailEditor/store/emailEditorConfig.js +++ b/src/components/EmailEditor/store/emailEditorConfig.js @@ -26,6 +26,7 @@ const getDefaultState = () => { body: true, fullWidth: true, text: true, + typedText: true, button: true, box: true, multiColumn: true,