diff --git a/front/src/modules/ui/table/components/EntityTable.tsx b/front/src/modules/ui/table/components/EntityTable.tsx index 116a912d8..6ed158fba 100644 --- a/front/src/modules/ui/table/components/EntityTable.tsx +++ b/front/src/modules/ui/table/components/EntityTable.tsx @@ -72,6 +72,18 @@ const StyledTableWithHeader = styled.div` width: 100%; `; +const StyledTableContainer = styled.div` + display: flex; + flex-direction: column; + height: 100%; + overflow: auto; +`; + +const StyledTableWrapper = styled.div` + flex: 1; + overflow: auto; +`; + type OwnProps = { columns: Array; viewName: string; @@ -109,18 +121,20 @@ export function EntityTable({ return ( - -
- - - - -
+ + + + + + + + +
); }