diff --git a/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx b/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx index 39cbd2eac..31e2187dd 100644 --- a/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx +++ b/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx @@ -960,11 +960,12 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => { // // Any maybe others, so to catch them all we only check the prefix - const changeCommands = ['mceBlockQuote', 'ToggleJoplinChecklistItem']; + const changeCommands = ['mceBlockQuote', 'ToggleJoplinChecklistItem', 'Bold', 'Italic', 'Underline', 'Paragraph']; if ( changeCommands.includes(c) || c.indexOf('Insert') === 0 || + c.indexOf('Header') === 0 || c.indexOf('mceToggle') === 0 || c.indexOf('mceInsert') === 0 || c.indexOf('mceTable') === 0