This commit is contained in:
Timothy J. Baek 2024-06-02 22:28:56 -07:00
parent fddf693dad
commit 16e72b2f67
1 changed files with 12 additions and 6 deletions

View File

@ -828,13 +828,19 @@
e.preventDefault();
}
if (e.key === 'Enter' && !e.shiftKey && prompt !== '') {
submitPrompt(prompt, user);
return;
}
const commandOptionButton = [
...document.getElementsByClassName('selected-command-option-button')
]?.at(-1);
if (e.key === 'Enter' && e.shiftKey && prompt !== '') {
return;
if (!commandOptionButton) {
if (e.key === 'Enter' && !e.shiftKey && prompt !== '' && selected) {
submitPrompt(prompt, user);
return;
}
if (e.key === 'Enter' && e.shiftKey && prompt !== '') {
return;
}
}
}