fix(Pivot Table): Fix column width to respect currency config (#31414)

This commit is contained in:
Vitor Avila 2024-12-12 10:44:07 -03:00 committed by GitHub
parent 423a0fefa5
commit 43314dc8db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ const Styles = styled.div<PivotTableStylesProps>`
width: ${
typeof width === 'string' ? parseInt(width, 10) : width - margin * 2
}px;
white-space: nowrap;
`}
`;