Skip to content

Commit

Permalink
fix: encoded search query (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav authored Nov 8, 2024
1 parent 7f51f1e commit f1322f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unfold/static/unfold/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const submitSearch = () => {
}, {});

if (searchString) {
queryParams["q"] = searchString;
queryParams["q"] = encodeURIComponent(searchString);
}

const result = Object.entries(queryParams)
Expand Down

0 comments on commit f1322f4

Please sign in to comment.