Skip to content

Commit

Permalink
Replace escape with encodeURIComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamatha1718 committed Jan 29, 2025
1 parent 23f83ae commit ba70776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchexec/tablegenerator/react-table/src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ const makeFilterSerializer =
);
} else {
// <valueFilter>
filter = `value(${(filters.value)})`;
filter = `value(${encodeURIComponent(filters.value)})`;
}
if (filter !== "") {
columnFilters.push(`${columnFilterHeader}(${filter})`);
Expand Down

0 comments on commit ba70776

Please sign in to comment.