Skip to content

Commit 36c4749

Browse files
committed
do not use synthetic submit event on enter
This didn't work correctly for some reason in Firefox. Instead we directly call the submit handler
1 parent 94b3b34 commit 36c4749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/AIChatChat.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class AIChatChat extends HTMLElement {
3737
this.#input.addEventListener('keydown', (event) => {
3838
if (event.key === 'Enter' && !event.shiftKey && !event.ctrlKey && !event.altKey && !event.metaKey) {
3939
event.preventDefault();
40-
form.dispatchEvent(new Event('submit'));
40+
this.onSubmit(event);
4141
}
4242
});
4343
}

0 commit comments

Comments
 (0)