decoded uri in search

This commit is contained in:
Shubham Mehrotra 2020-05-18 14:35:16 +05:30
parent 1a91ef116f
commit be644f6134
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@
searchedItem.forEach(item => {
let splitedItem = item.split('=');
updatedSearchedCollection[splitedItem[0]] = splitedItem[1];
updatedSearchedCollection[splitedItem[0]] = decodeURI(splitedItem[1]);
});
this.searchedQuery = updatedSearchedCollection;