fix: allow spacebar in chat input textarea (#12612)

fix: allow spacebar in chat input textarea
This commit is contained in:
keval shah
2026-04-10 12:02:33 -04:00
committed by GitHub
parent 767c18bf3a
commit 678da97976

View File

@ -68,6 +68,11 @@ const InputWrapper = ({
};
const onKeyDown = (e: React.KeyboardEvent<HTMLDivElement>) => {
const target = e.target as HTMLElement;
// Don't handle keyboard events that originate from the textarea
if (target.closest("textarea")) {
return;
}
if (e.key !== "Enter" && e.key !== " ") {
return;
}