mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Explore: Fix show all series (#34968)
This commit is contained in:
parent
355be158b7
commit
6e5d349ae8
@ -129,7 +129,10 @@ export function ExploreGraphNGPanel({
|
||||
{`Showing only ${MAX_NUMBER_OF_TIME_SERIES} time series. `}
|
||||
<span
|
||||
className={cx([style.showAllTimeSeries])}
|
||||
onClick={() => setShowAllTimeSeries(true)}
|
||||
onClick={() => {
|
||||
structureChangesRef.current++;
|
||||
setShowAllTimeSeries(true);
|
||||
}}
|
||||
>{`Show all ${dataWithConfig.length}`}</span>
|
||||
</div>
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user