Skip to content

Commit

Permalink
Update query params for search box
Browse files Browse the repository at this point in the history
  • Loading branch information
Fitmavincent committed Feb 25, 2024
1 parent ce66b2b commit 249d9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawler-app/src/components/Result.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
if(searchText && searchText != '') {
this.axios.get(this.ozdataUrl, {
params: {
wish: searchText
wish: searchText.split(' ')
}
}).then((res) => {
this.isLoading = false;
Expand Down

1 comment on commit 249d9ee

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.