From f39ed59662a862bf62d8869d0365b411bc4b0e25 Mon Sep 17 00:00:00 2001 From: Oscar Kilhed Date: Fri, 29 Sep 2023 16:54:16 +0200 Subject: [PATCH] Table: Make sparkline cell respect no value option. (#75750) Make sparkline respect no value option --- packages/grafana-ui/src/components/Table/SparklineCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Table/SparklineCell.tsx b/packages/grafana-ui/src/components/Table/SparklineCell.tsx index 527702c34af..f9f4db6b915 100644 --- a/packages/grafana-ui/src/components/Table/SparklineCell.tsx +++ b/packages/grafana-ui/src/components/Table/SparklineCell.tsx @@ -35,7 +35,7 @@ export const SparklineCell = (props: TableCellProps) => { if (!sparkline) { return (
- no data + {field.config.noValue || 'no data'}
); }