mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Table: Make sparkline cell respect no value option. (#75750)
Make sparkline respect no value option
This commit is contained in:
parent
59f0f9a93e
commit
f39ed59662
@ -35,7 +35,7 @@ export const SparklineCell = (props: TableCellProps) => {
|
|||||||
if (!sparkline) {
|
if (!sparkline) {
|
||||||
return (
|
return (
|
||||||
<div {...cellProps} className={tableStyles.cellContainer}>
|
<div {...cellProps} className={tableStyles.cellContainer}>
|
||||||
no data
|
{field.config.noValue || 'no data'}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user