From 2d391c98d22aaf2d6a85c847acfd938912b619e9 Mon Sep 17 00:00:00 2001 From: Victor Marin <36818606+mdvictor@users.noreply.github.com> Date: Wed, 17 Aug 2022 13:40:38 +0300 Subject: [PATCH] Histogram: Fix panel hide when clicking on legend (#53651) --- public/app/plugins/panel/histogram/Histogram.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/histogram/Histogram.tsx b/public/app/plugins/panel/histogram/Histogram.tsx index 16063c8f402..2e68f168002 100644 --- a/public/app/plugins/panel/histogram/Histogram.tsx +++ b/public/app/plugins/panel/histogram/Histogram.tsx @@ -199,7 +199,7 @@ const prepConfig = (frame: DataFrame, theme: GrafanaTheme2) => { colorMode, pathBuilder, //pointsBuilder: config.drawPoints, - show: !customConfig.hideFrom?.vis, + show: !customConfig.hideFrom?.viz, gradientMode: customConfig.gradientMode, thresholds: field.config.thresholds,