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

fix(table): table cell text jumping on hover
pull/94248/head
Ihor Yeromin 8 months ago committed by GitHub
parent e37b43117b
commit 9801b92c3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      packages/grafana-ui/src/components/Table/TableCell.tsx

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

Loading…
Cancel
Save