Skip to content

Commit

Permalink
Merge pull request #69 from AddSearch/bug-in-query-encoding
Browse files Browse the repository at this point in the history
remove facet value encoding
  • Loading branch information
jkytomaki authored Nov 8, 2021
2 parents 3ce9bd2 + 314285d commit aff1de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/filters/filterstateobserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function createFilterObject(state, baseFilters) {

for (let facetValue in state.activeFacets[facetField]) {
const f = {};
f[facetField] = encodeURIComponent(facetValue);
f[facetField] = facetValue;
facetGroupOR.or.push(f);
}

Expand Down

0 comments on commit aff1de5

Please sign in to comment.