[list views] add work-break css for table layouts (#9537)
This commit is contained in:
parent
fd89900dc5
commit
1ccda920fe
|
|
@ -60,6 +60,10 @@
|
|||
.action-button {
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
.table-cell {
|
||||
word-break: break-all;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
|
|
|
|||
|
|
@ -85,7 +85,11 @@ export default function TableCollection({
|
|||
const columnCellProps = cell.column.cellProps || {};
|
||||
|
||||
return (
|
||||
<td {...cell.getCellProps()} {...columnCellProps}>
|
||||
<td
|
||||
className="table-cell"
|
||||
{...cell.getCellProps()}
|
||||
{...columnCellProps}
|
||||
>
|
||||
<span>{cell.render('Cell')}</span>
|
||||
</td>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue