From 8e92eecc199358057005a90f19e303fd76edce9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 15 Aug 2019 10:21:13 +0200 Subject: [PATCH] Graph: Fixed issue clicking on series line icon (#18563) --- .../src/components/CustomScrollbar/CustomScrollbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx b/packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx index 3546148f57c..96e8809a6eb 100644 --- a/packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx +++ b/packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx @@ -77,7 +77,7 @@ export class CustomScrollbar extends Component { {...passedProps} className={cx( css` - visibility: ${hideTrack ? 'none' : 'visible'}; + visibility: ${hideTrack ? 'hidden' : 'visible'}; `, track )}