This is an automated email from the ASF dual-hosted git repository.
vavila pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 43314dc8db fix(Pivot Table): Fix column width to respect currency
config (#31414)
43314dc8db is described below
commit 43314dc8dbf23f9612620ee85befa167eeed7696
Author: Vitor Avila <[email protected]>
AuthorDate: Thu Dec 12 10:44:07 2024 -0300
fix(Pivot Table): Fix column width to respect currency config (#31414)
---
.../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;
`}
`;