diff --git a/src/components/ItemTable/ItemTable.js b/src/components/ItemTable/ItemTable.js index ef379d0..8d3cb91 100644 --- a/src/components/ItemTable/ItemTable.js +++ b/src/components/ItemTable/ItemTable.js @@ -24,6 +24,9 @@ export default function ItemTable({ data, onRowClick }) { backgroundColor: theme.palette.type === 'light' ? theme.palette.grey[50] : theme.palette.grey[700], }, }, + columnBorders: { + borderLeft: `1px solid ${theme.palette.grey[300]}` + } }); const classes = useStyles(); @@ -100,7 +103,7 @@ export default function ItemTable({ data, onRowClick }) { onClick={() => history.push(`/${row.original.queue}/${row.original.number}`)} className={classes.bandedRows} {...row.getRowProps()}> {row.cells.map(cell => ( - + {cell.render("Cell")} ))}