mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
🐛 Fixed Enter key not working correctly when using IME in post title (#18950)
closes https://github.com/TryGhost/Ghost/issues/18949 - added check for `isComposing` in Enter key handler to avoid the move-to-post-body behaviour when the Enter keypress is used to end IME composition --------- Co-authored-by: t8m8 <tomomasa.matsunaga@gmail.com>
This commit is contained in:
parent
79cbf34b1b
commit
e7ade50546
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ export default class GhKoenigEditorReactComponent extends Component {
|
|||
onTitleKeydown(event) {
|
||||
const {editorAPI} = this;
|
||||
|
||||
if (!editorAPI) {
|
||||
if (!editorAPI || event.originalEvent.isComposing) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue