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.
1 parent 6cee31c commit a2d5560Copy full SHA for a2d5560
src/components/InputBox/index.jsx
@@ -11,6 +11,7 @@ export function InputBox({ onSubmit, enabled }) {
11
})
12
13
const onKeyDown = (e) => {
14
+ e.stopPropagation()
15
if (e.keyCode === 13 && e.shiftKey === false) {
16
e.preventDefault()
17
if (!value) return
0 commit comments