mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-24 14:24:41 +02:00
actiontable.js: Properly handle encoded filter values
This commit is contained in:
parent
5a031bf659
commit
fd97e8b056
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user