mirror of https://github.com/laurent22/joplin.git
Desktop: Fixed issue with note not being saved when a column is added or remove from Rich Text editor
parent
d63378b4e3
commit
d0f22140fd
|
@ -962,7 +962,13 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => {
|
|||
|
||||
const changeCommands = ['mceBlockQuote', 'ToggleJoplinChecklistItem'];
|
||||
|
||||
if (changeCommands.includes(c) || c.indexOf('Insert') === 0 || c.indexOf('mceToggle') === 0 || c.indexOf('mceInsert') === 0) {
|
||||
if (
|
||||
changeCommands.includes(c) ||
|
||||
c.indexOf('Insert') === 0 ||
|
||||
c.indexOf('mceToggle') === 0 ||
|
||||
c.indexOf('mceInsert') === 0 ||
|
||||
c.indexOf('mceTable') === 0
|
||||
) {
|
||||
onChangeHandler();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue