We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df3e571 + 78cb85f commit 245b38eCopy full SHA for 245b38e
src/ui/Dependency.svelte
@@ -55,6 +55,8 @@
55
}
56
break;
57
case 'Enter':
58
+ if (e.isComposing) return;
59
+
60
if (searchIndex !== null) {
61
e.preventDefault();
62
addTask(searchResults[searchIndex]);
src/ui/EditTask.svelte
@@ -127,7 +127,7 @@
127
};
128
129
const _onDescriptionKeyDown = (e: KeyboardEvent) => {
130
- if (e.key === 'Enter') {
+ if (e.key === 'Enter' && !e.isComposing) {
131
132
if (formIsValid) _onSubmit();
133
0 commit comments