Skip to content

Commit 6c4fc17

Browse files
committed
remove semicolons for consistency
1 parent 6b7c8b6 commit 6c4fc17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/SearchBox.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ export default {
120120
121121
// augment suggestions with user-provided function
122122
if (functions && functions.processSuggestions) {
123-
this.suggestions = await functions.processSuggestions(suggestions, this.query, this.queryTerms);
123+
this.suggestions = await functions.processSuggestions(suggestions, this.query, this.queryTerms)
124124
} else {
125-
this.suggestions = suggestions;
125+
this.suggestions = suggestions
126126
}
127127
},
128128
getPageLocalePath(page) {
@@ -191,7 +191,7 @@ export default {
191191
params.delete('query')
192192
const paramsString = params.toString()
193193
const newState = window.location.pathname + (paramsString ? `?${paramsString}` : '')
194-
history.pushState(null, '', newState);
194+
history.pushState(null, '', newState)
195195
}
196196
}
197197
},

0 commit comments

Comments
 (0)