Missing semicolon semi

pull/6571/head
leezng 2017-08-15 13:45:32 +08:00 committed by 杨奕
parent 5268a8f8c1
commit dc77b56d31
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@
},
handleKeyEnter(e) {
if (this.suggestionVisible && this.highlightedIndex >= 0 && this.highlightedIndex < this.suggestions.length) {
e.preventDefault()
e.preventDefault();
this.select(this.suggestions[this.highlightedIndex]);
}
},