react-native-rich-editor
react-native-rich-editor copied to clipboard
bold, italics cannot be cancelled in the same line when typing Chinese
https://user-images.githubusercontent.com/2976232/125726126-10b34830-dd5d-485d-99d4-cf39941676fc.MP4
Bug is showed in the video. Only when starting a new line, you get the chance to cancel bold/italics.
I found a way to fix this problem: node_modules/react-native-pell-rich-editor/src/editor.js Line 252 Change to bold: { state: function() { return queryCommandState('bold'); }, result: function() { if (queryCommandState('bold')) { exec('bold'); return exec('insertHTML', ''); } else { exec('bold'); } }},