diff --git a/ui/src/components/NewIssueDialog.tsx b/ui/src/components/NewIssueDialog.tsx index 108e282b..e85898a6 100644 --- a/ui/src/components/NewIssueDialog.tsx +++ b/ui/src/components/NewIssueDialog.tsx @@ -699,7 +699,12 @@ export function NewIssueDialog() { }} readOnly={createIssue.isPending} onKeyDown={(e) => { - if (e.key === "Enter" && !e.metaKey && !e.ctrlKey) { + if ( + e.key === "Enter" && + !e.metaKey && + !e.ctrlKey && + !e.nativeEvent.isComposing + ) { e.preventDefault(); descriptionEditorRef.current?.focus(); }