mirror of https://github.com/ElemeFE/element
Missing semicolon semi
parent
5268a8f8c1
commit
dc77b56d31
|
@ -135,7 +135,7 @@
|
||||||
},
|
},
|
||||||
handleKeyEnter(e) {
|
handleKeyEnter(e) {
|
||||||
if (this.suggestionVisible && this.highlightedIndex >= 0 && this.highlightedIndex < this.suggestions.length) {
|
if (this.suggestionVisible && this.highlightedIndex >= 0 && this.highlightedIndex < this.suggestions.length) {
|
||||||
e.preventDefault()
|
e.preventDefault();
|
||||||
this.select(this.suggestions[this.highlightedIndex]);
|
this.select(this.suggestions[this.highlightedIndex]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue