From 32758e7cf0f9118f8f301a7720c8ad1b6cb237e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Fri, 15 Jan 2021 15:35:17 +0100 Subject: [PATCH] Table: Fixes BarGauge cell display mode font size so that it is fixed to the default cell font size (#30303) --- packages/grafana-ui/src/components/Table/BarGaugeCell.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-ui/src/components/Table/BarGaugeCell.tsx b/packages/grafana-ui/src/components/Table/BarGaugeCell.tsx index e4fd2f2491f..5c18ce7088d 100644 --- a/packages/grafana-ui/src/components/Table/BarGaugeCell.tsx +++ b/packages/grafana-ui/src/components/Table/BarGaugeCell.tsx @@ -52,6 +52,7 @@ export const BarGaugeCell: FC = props => { height={tableStyles.cellHeightInner} field={config} display={field.display} + text={{ valueSize: 14 }} value={displayValue} orientation={VizOrientation.Horizontal} theme={tableStyles.theme}