0
Fork 0
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:
t8m8 2023-11-13 19:08:16 +09:00 committed by GitHub
parent 79cbf34b1b
commit e7ade50546
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ export default class GhKoenigEditorReactComponent extends Component {
onTitleKeydown(event) {
const {editorAPI} = this;
if (!editorAPI) {
if (!editorAPI || event.originalEvent.isComposing) {
return;
}