Table: Fix table cell text jumping on hover (#93913)

fix(table): table cell text jumping on hover
This commit is contained in:
Ihor Yeromin 2024-10-04 13:20:15 +02:00 committed by GitHub
parent e37b43117b
commit 9801b92c3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,6 +40,7 @@ export const TableCell = ({
} }
if (cellProps.style) { if (cellProps.style) {
cellProps.style.wordBreak = 'break-word';
cellProps.style.minWidth = cellProps.style.width; cellProps.style.minWidth = cellProps.style.width;
const justifyContent = (cell.column as any).justifyContent; const justifyContent = (cell.column as any).justifyContent;