1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Desktop: Fixed issue with note being saved after word has been replaced by spell checker

This commit is contained in:
Laurent Cozic 2020-11-13 17:55:35 +00:00
parent 17d835d694
commit 72472c13c5

View File

@ -272,6 +272,8 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => {
},
replaceSelection: (value: any) => {
editor.selection.setContent(value);
editor.fire('joplinChange');
dispatchDidUpdate(editor);
},
};