Skip to content

Commit

Permalink
Fix eslint semicolon error
Browse files Browse the repository at this point in the history
  • Loading branch information
dhivyada committed Apr 3, 2020
1 parent f9d9bb7 commit 8c947dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Autocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export default {
return
}
// When the function is async and returns a promise
return this.handlePromise(this.source(this.display));
return this.handlePromise(this.source(this.display))
case typeof this.source === 'function':
// No resource search with no input
if (!this.display || this.display.length < 1) {
Expand Down

0 comments on commit 8c947dd

Please sign in to comment.