This is an automated email from the ASF dual-hosted git repository. jli pushed a commit to branch 4.1 in repository https://gitbox.apache.org/repos/asf/superset.git
commit da4d911891497654a27a23eb15ab1a3225582cf2 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) (cherry picked from commit 43314dc8dbf23f9612620ee85befa167eeed7696) --- .../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 0c83a152df..2aeaac1063 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; `} `;
