Skip to content

Commit 0b5881b

Browse files
committed
Replacing escape with encodeURIComponent
1 parent 1af7ead commit 0b5881b

File tree

1 file changed

+1
-1
lines changed
  • benchexec/tablegenerator/react-table/src/utils

1 file changed

+1
-1
lines changed

Diff for: benchexec/tablegenerator/react-table/src/utils/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ const makeUrlFilterDeserializer = (statusValues, categoryValues) => {
310310
const makeSerializedFilterValue = (filter) => {
311311
const parts = [];
312312
for (const [key, values] of Object.entries(filter)) {
313-
parts.push(`${key}(${values.map(escape).join(",")})`);
313+
parts.push(`${key}(${values.map(encodeURIComponent).join(",")})`);
314314
}
315315
return parts.join(",");
316316
};

0 commit comments

Comments
 (0)