From 0e173918aa575c943ce42ea990f9594c64f86f91 Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Thu, 20 Sep 2018 17:02:26 +0200 Subject: [PATCH] Explore: show series title in tooltip of legend item --- public/app/containers/Explore/Legend.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/app/containers/Explore/Legend.tsx b/public/app/containers/Explore/Legend.tsx index e00932fe566..439b6c3e54f 100644 --- a/public/app/containers/Explore/Legend.tsx +++ b/public/app/containers/Explore/Legend.tsx @@ -5,7 +5,9 @@ const LegendItem = ({ series }) => (
- {series.alias} + + {series.alias} + );