fix single gauge

This commit is contained in:
Peter Holmberg 2019-02-07 09:33:22 +01:00
parent 58f04178a3
commit d8f1e99249

View File

@ -71,7 +71,7 @@ export class GaugePanel extends PureComponent<Props> {
const { options, width, height } = this.props;
return (
<div className="singlestat-panel">{this.renderGauge(timeSeries.stats[options.stat], width, height, theme)}</div>
<div className="singlestat-panel">{this.renderGauge(timeSeries[0].stats[options.stat], width, height, theme)}</div>
);
}