Skip to content

Commit

Permalink
Merge pull request #5376 from ososco/patch-1
Browse files Browse the repository at this point in the history
Proposed fix for Kudos marketplace search bar
  • Loading branch information
octavioamu authored Nov 6, 2019
2 parents 924457c + 92371e0 commit 854756f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/v2/js/pages/kudos-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $(document).ready(function() {
var clearBtn = $('.clear-search');

if (queryParam && queryParam.q) {
$('#kudos-search').val(queryParam.q);
$('#kudos-search').val(decodeURIComponent(queryParam.q.replace(/\+/g, '%20')));
clearBtn.removeClass('hidden');
}

Expand Down

0 comments on commit 854756f

Please sign in to comment.