Fix race condition.

It takes time for the emit function to actually fire.
This commit is contained in:
FireMasterK
2021-04-07 16:51:49 +05:30
parent 56464aeca0
commit 6099ad742c

View File

@@ -64,7 +64,7 @@ export default {
this.setSelected(i);
this.$router.push({
name: "SearchResults",
query: { search_query: this.searchText }
query: { search_query: this.searchSuggestions[i] }
});
},
setSelected(val) {