From fd97e8b056b7b3371488ee8b98f55f5b02830053 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 30 Jan 2020 08:31:06 +0100 Subject: [PATCH] actiontable.js: Properly handle encoded filter values --- public/js/icinga/behavior/actiontable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/icinga/behavior/actiontable.js b/public/js/icinga/behavior/actiontable.js index f17e74a80..1bdc04609 100644 --- a/public/js/icinga/behavior/actiontable.js +++ b/public/js/icinga/behavior/actiontable.js @@ -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; } }