Skip to content

Commit

Permalink
URL-encode filter parameter for /admin-ng-endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianKniephoff committed Oct 28, 2024
1 parent 25b665a commit 69aafe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/resourceUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const getURLParams = (
if (filters.length) {
params = {
...params,
filter: filters.join(","),
filter: filters.map(encodeURIComponent).join(","),
};
}

Expand Down

0 comments on commit 69aafe9

Please sign in to comment.