This is an automated email from the ASF dual-hosted git repository. arivero pushed a commit to branch table-time-comparison-offset in repository https://gitbox.apache.org/repos/asf/superset.git
commit 10959f2858141d169c0599675ef928fbdb05d67a Author: Lily Kuang <[email protected]> AuthorDate: Tue Apr 9 16:52:25 2024 -0700 fix: data in table with time comparison without change should be grey (#27911) --- superset-frontend/plugins/plugin-chart-table/src/transformProps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts b/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts index 8e832b05bb..47bd113147 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts +++ b/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts @@ -412,7 +412,7 @@ const transformProps = ( arrow: '', arrowColor: '', // eslint-disable-next-line theme-colors/no-literal-colors - backgroundColor: '#FFBFA133', + backgroundColor: 'rgba(0,0,0,0.2)', }; } const isPositive = percentDifferenceNum > 0;
