diff --git a/public/app/plugins/panel/gauge/GaugePanel.tsx b/public/app/plugins/panel/gauge/GaugePanel.tsx index 008889782eb..fd3d812f21e 100644 --- a/public/app/plugins/panel/gauge/GaugePanel.tsx +++ b/public/app/plugins/panel/gauge/GaugePanel.tsx @@ -11,12 +11,22 @@ export class GaugePanel extends PureComponent { const { timeSeries, width, height, onInterpolate, options } = this.props; const prefix = onInterpolate(options.prefix); + const suffix = onInterpolate(options.suffix); const vmSeries = getTimeSeriesVMs({ timeSeries: timeSeries, nullValueMode: NullValueMode.Ignore, }); - return ; + return ( + + ); } }