Skip to content

Commit

Permalink
fix: replace server encoded whitespace in productfilters '+' with '%2…
Browse files Browse the repository at this point in the history
…0' (#1278)
  • Loading branch information
Eisie96 authored Sep 26, 2022
1 parent eec9cda commit 4692947
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class FilterNavigationMapper {
selected: facet.selected,
displayName: facet.displayValue || undefined,
searchParameter: {
...stringToFormParams(facet.link.uri.split('?')[1] || ''),
...stringToFormParams(facet.link.uri.split('?')[1]?.replace(/\+/g, '%20') || ''),
category,
},
level: facet.level || 0,
Expand Down

0 comments on commit 4692947

Please sign in to comment.