fix: enter key cannot select prompt when using enter key to submit

main
Quorafind 3 years ago
parent 5ba0aef799
commit cf775e3487

5
.gitignore vendored

@ -39,4 +39,7 @@ dev
public/prompts.json public/prompts.json
.vscode .vscode
.idea .idea
# Other Package Manager
pnpm-lock.yaml

@ -502,7 +502,7 @@ export function Chat() {
e.preventDefault(); e.preventDefault();
return; return;
} }
if (shouldSubmit(e)) { if (shouldSubmit(e) && promptHints.length === 0) {
doSubmit(userInput); doSubmit(userInput);
e.preventDefault(); e.preventDefault();
} }

Loading…
Cancel
Save