From 4e02b6ca4fdba395a9768c511fa83a5c3a4d38b9 Mon Sep 17 00:00:00 2001 From: Vitor Avila Date: Thu, 12 Dec 2024 00:08:44 -0300 Subject: [PATCH] fix(Pivot Table): Fix column width to respect currency config --- .../plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx b/superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx index a17bac64aa78..aef8b8b32126 100644 --- a/superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx +++ b/superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx @@ -51,6 +51,7 @@ const Styles = styled.div` width: ${ typeof width === 'string' ? parseInt(width, 10) : width - margin * 2 }px; + white-space: nowrap; `} `;