#5618 - Updated AutoComplete to allow form submission using return

This commit is contained in:
carldenigma 2024-04-19 11:16:23 +01:00
parent 6615f31d8a
commit f57a90eb51

View file

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