Skip to content

Commit

Permalink
add missing prefix encodig
Browse files Browse the repository at this point in the history
  • Loading branch information
felixgehrmann committed Aug 26, 2021
1 parent 6a5339a commit 9ff819e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/src/app/services/UrlService.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export function encodeParams(params, prefix)
{
return encodeURIComponent(params);
}
return prefix + "=" + encodeURIComponent(params);
return encodeURIComponent(prefix) + "=" + encodeURIComponent(params);
}

export function setUrlByItem(itemData, keepVariationId)
Expand Down

0 comments on commit 9ff819e

Please sign in to comment.