From cc827422453104acdb5f395e6ad1e010602249de Mon Sep 17 00:00:00 2001 From: Mateen Ulhaq Date: Mon, 12 Jun 2023 01:54:00 -0700 Subject: [PATCH] [feat] Display latest histogram by default (#2835) --- .../pages/RunDetail/DistributionsVisualizer/temp/Wrapper.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aim/web/ui/src/pages/RunDetail/DistributionsVisualizer/temp/Wrapper.jsx b/aim/web/ui/src/pages/RunDetail/DistributionsVisualizer/temp/Wrapper.jsx index d5ed51aeaa..4727604744 100644 --- a/aim/web/ui/src/pages/RunDetail/DistributionsVisualizer/temp/Wrapper.jsx +++ b/aim/web/ui/src/pages/RunDetail/DistributionsVisualizer/temp/Wrapper.jsx @@ -134,7 +134,7 @@ class ExperimentDistributionCharts extends React.Component { key: this.props.name, }); - this.computeHistogram(0); + this.computeHistogram(this.props.data.length - 1); }, ); };