From dd857a2c7a21bd7a35d9a8596b4e23951e1ae56b Mon Sep 17 00:00:00 2001 From: SBIN2010 Date: Wed, 29 Oct 2025 20:29:22 +0300 Subject: [PATCH] fix: displaying cell bars in table (#35885) --- superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx index d021eedfb61..f876fe4f0e9 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx +++ b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx @@ -177,7 +177,7 @@ function cellBackground({ theme: SupersetTheme; }) { if (!colorPositiveNegative) { - return `${theme.colorFillSecondary}50`; + return `${theme.colorFill}`; } if (value < 0) {