#5618 - Updated AutoComplete to allow form submission using return

pull/5619/head
carldenigma 2024-04-19 11:16:23 +01:00
parent 6615f31d8a
commit f57a90eb51
1 changed files with 1 additions and 3 deletions

View File

@ -617,16 +617,14 @@ export default {
onEnterKey(event) { onEnterKey(event) {
if (!this.overlayVisible) { if (!this.overlayVisible) {
this.focusedOptionIndex = -1; // reset this.focusedOptionIndex = -1; // reset
this.onArrowDownKey(event);
} else { } else {
if (this.focusedOptionIndex !== -1) { if (this.focusedOptionIndex !== -1) {
this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]); this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]);
event.preventDefault();
} }
this.hide(); this.hide();
} }
event.preventDefault();
}, },
onEscapeKey(event) { onEscapeKey(event) {
this.overlayVisible && this.hide(true); this.overlayVisible && this.hide(true);