Merge pull request #5116 from RookieZoe/2.select
[select] fix script error when searching in select component
This commit is contained in:
commit
8857d163b3
1 changed files with 9 additions and 3 deletions
|
@ -560,8 +560,14 @@
|
|||
if (e.key === 'Enter') {
|
||||
if (this.focusIndex === -1) return this.hideMenu();
|
||||
const optionComponent = this.flatOptions[this.focusIndex];
|
||||
const option = this.getOptionData(optionComponent.componentOptions.propsData.value);
|
||||
this.onOptionClick(option);
|
||||
|
||||
// fix a script error when searching
|
||||
if (optionComponent) {
|
||||
const option = this.getOptionData(optionComponent.componentOptions.propsData.value);
|
||||
this.onOptionClick(option);
|
||||
} else {
|
||||
this.hideMenu();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
const keysThatCanOpenSelect = ['ArrowUp', 'ArrowDown'];
|
||||
|
|
Loading…
Add table
Reference in a new issue