File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,9 +120,9 @@ export default {
120
120
121
121
// augment suggestions with user-provided function
122
122
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 )
124
124
} else {
125
- this .suggestions = suggestions;
125
+ this .suggestions = suggestions
126
126
}
127
127
},
128
128
getPageLocalePath (page ) {
@@ -191,7 +191,7 @@ export default {
191
191
params .delete (' query' )
192
192
const paramsString = params .toString ()
193
193
const newState = window .location .pathname + (paramsString ? ` ?${ paramsString} ` : ' ' )
194
- history .pushState (null , ' ' , newState);
194
+ history .pushState (null , ' ' , newState)
195
195
}
196
196
}
197
197
},
You can’t perform that action at this time.
0 commit comments