fix(ui): prevent IME composition Enter from moving focus in new issue title
This commit is contained in:
@@ -681,7 +681,12 @@ export function NewIssueDialog() {
|
|||||||
e.target.style.height = `${e.target.scrollHeight}px`;
|
e.target.style.height = `${e.target.scrollHeight}px`;
|
||||||
}}
|
}}
|
||||||
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