From fd212e7c2060078c6c46d96c3420fe639402106a Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 11 Dec 2023 11:24:45 +0100 Subject: [PATCH] fix error hide/show input sliced mode pandora_enterprise#9640 --- pandora_console/include/javascript/pandora.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index c4e2f0df9c..f81e14ae69 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2581,6 +2581,7 @@ function showPeriodicityOptions(element) { $("#row_graph_render").hide(); $("#row_percentil").hide(); $("#MGgraphType").hide(); + $("#row_unknowns_graph").hide(); } else { $("#row_time_compare_overlapped").show(); $("#row_fullscale").show(); @@ -2588,6 +2589,7 @@ function showPeriodicityOptions(element) { $("#row_graph_render").show(); $("#row_percentil").show(); $("#MGgraphType").show(); + $("#row_unknowns_graph").show(); $("#row_period_maximum").hide(); $("#row_period_minimum").hide(); $("#row_period_average").hide();