Skip to content

Commit

Permalink
Missing semicolon semi
Browse files Browse the repository at this point in the history
  • Loading branch information
leezng authored and Leopoldthecoder committed Aug 18, 2017
1 parent 5268a8f commit dc77b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/autocomplete/src/autocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
},
Expand Down

0 comments on commit dc77b56

Please sign in to comment.