diff --git a/packages/grafana-ui/src/components/Table/TableNG/Cells/SparklineCell.tsx b/packages/grafana-ui/src/components/Table/TableNG/Cells/SparklineCell.tsx index f020ad830d5..5913b2cb64d 100644 --- a/packages/grafana-ui/src/components/Table/TableNG/Cells/SparklineCell.tsx +++ b/packages/grafana-ui/src/components/Table/TableNG/Cells/SparklineCell.tsx @@ -101,6 +101,7 @@ export const SparklineCell = (props: SparklineCellProps) => { textAlign: 'right', marginRight: theme.spacing(1), }} + className={styles.valueContainer} value={displayValue} /> ); @@ -157,4 +158,7 @@ const getStyles = (theme: GrafanaTheme2, justifyContent: Property.JustifyContent alignItems: 'center', justifyContent, }), + valueContainer: css({ + div: { width: 'inherit' }, + }), });