From 8168629948885f0ee7797897296affa23d98d92c Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 31 May 2021 05:41:47 -0400 Subject: [PATCH] Explore: Fix show all series (#34968) (#34979) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 6e5d349ae801fb4adf119e0a1452f6bd4e1dfcd1) Co-authored-by: Zoltán Bedi --- public/app/features/explore/ExploreGraphNGPanel.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/app/features/explore/ExploreGraphNGPanel.tsx b/public/app/features/explore/ExploreGraphNGPanel.tsx index 0d477d805f7..c9ce1538fee 100644 --- a/public/app/features/explore/ExploreGraphNGPanel.tsx +++ b/public/app/features/explore/ExploreGraphNGPanel.tsx @@ -129,7 +129,10 @@ export function ExploreGraphNGPanel({ {`Showing only ${MAX_NUMBER_OF_TIME_SERIES} time series. `} setShowAllTimeSeries(true)} + onClick={() => { + structureChangesRef.current++; + setShowAllTimeSeries(true); + }} >{`Show all ${dataWithConfig.length}`} )}