actiontable.js: Properly handle encoded filter values

This commit is contained in:
Johannes Meyer 2020-01-30 08:31:06 +01:00
parent 5a031bf659
commit fd97e8b056
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@
var key = keys[i];
for (var j = 0; j < params.length; j++) {
if (params[j].key === key && (params[j].value || params[j].value === null)) {
tuple[key] = params[j].value;
tuple[key] = params[j].value ? decodeURIComponent(params[j].value): params[j].value;
break;
}
}