Merge pull request #578 from kaonash/fix_ime_composition_enter_in_new_issue_dialog
fix(ui): prevent IME composition Enter from moving focus in new issue title
This commit is contained in:
@@ -699,7 +699,12 @@ export function NewIssueDialog() {
|
|||||||
}}
|
}}
|
||||||
readOnly={createIssue.isPending}
|
readOnly={createIssue.isPending}
|
||||||
onKeyDown={(e) => {
|
onKeyDown={(e) => {
|
||||||
if (e.key === "Enter" && !e.metaKey && !e.ctrlKey) {
|
if (
|
||||||
|
e.key === "Enter" &&
|
||||||
|
!e.metaKey &&
|
||||||
|
!e.ctrlKey &&
|
||||||
|
!e.nativeEvent.isComposing
|
||||||
|
) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
descriptionEditorRef.current?.focus();
|
descriptionEditorRef.current?.focus();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user