This is an automated email from the ASF dual-hosted git repository.

vavila pushed a commit to branch fix/pivot-table-column-width
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 4e02b6ca4fdba395a9768c511fa83a5c3a4d38b9
Author: Vitor Avila <[email protected]>
AuthorDate: Thu Dec 12 00:08:44 2024 -0300

    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 a17bac64aa..aef8b8b321 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<PivotTableStylesProps>`
       width: ${
         typeof width === 'string' ? parseInt(width, 10) : width - margin * 2
       }px;
+      white-space: nowrap;
  `}
 `;
 

Reply via email to