diff --git a/superset-frontend/src/components/ListView/ListViewStyles.less b/superset-frontend/src/components/ListView/ListViewStyles.less index 20b27730516fc..2a510c6c6da4b 100644 --- a/superset-frontend/src/components/ListView/ListViewStyles.less +++ b/superset-frontend/src/components/ListView/ListViewStyles.less @@ -60,6 +60,10 @@ .action-button { margin: 0 8px; } + + .table-cell { + word-break: break-all; + } } @keyframes shimmer { diff --git a/superset-frontend/src/components/ListView/TableCollection.tsx b/superset-frontend/src/components/ListView/TableCollection.tsx index 126a0570be5b1..863e655ce6df3 100644 --- a/superset-frontend/src/components/ListView/TableCollection.tsx +++ b/superset-frontend/src/components/ListView/TableCollection.tsx @@ -85,7 +85,11 @@ export default function TableCollection({ const columnCellProps = cell.column.cellProps || {}; return ( - + {cell.render('Cell')} );