From 2e083c06d7f5f8c6a00e925aa57981a73530213c Mon Sep 17 00:00:00 2001 From: Daniel Barbero Martin Date: Tue, 22 Mar 2022 11:32:44 +0100 Subject: [PATCH] add report services sla to wizard metaconsole pandora_enterprise#7063 --- pandora_console/include/javascript/pandora.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index bde3c583f0..677b507285 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -1040,6 +1040,7 @@ function adjustTextUnits(name) { "selected", true ); + $("#" + name + "_units").trigger("change"); $("#text-" + name + "_text").val(restPrev); unitsSelected = true; } @@ -1048,7 +1049,9 @@ function adjustTextUnits(name) { }); if (unitsSelected == false) { + //$("#" + name + "_units option:last").prop("selected", true); $("#" + name + "_units option:last").prop("selected", true); + $("#" + name + "_units").trigger("change"); $("#text-" + name + "_text").val(restPrev); }