Fixed #4906 - Listbox: issue with navigating through list items using tab and enter buttons
parent
4cefb906e9
commit
3a0b1918c4
|
@ -500,8 +500,6 @@ export default {
|
||||||
if (this.multiple && event.shiftKey) this.onOptionSelectRange(event, this.focusedOptionIndex);
|
if (this.multiple && event.shiftKey) this.onOptionSelectRange(event, this.focusedOptionIndex);
|
||||||
else this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]);
|
else this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]);
|
||||||
}
|
}
|
||||||
|
|
||||||
event.preventDefault();
|
|
||||||
},
|
},
|
||||||
onSpaceKey(event) {
|
onSpaceKey(event) {
|
||||||
this.onEnterKey(event);
|
this.onEnterKey(event);
|
||||||
|
|
Loading…
Reference in New Issue