got rid of last column size grabber

This commit is contained in:
Carter 2025-06-03 09:50:36 -06:00
parent 4d26cb0f05
commit 56f78dd906

View file

@ -543,12 +543,14 @@ export default function ResponsiveTable<T extends Object>(props: Props<T>) {
>
{column.title} {showOrderIcon(column)}
</Grid2>
{index < columns.length-1 &&
<Grid2
sx={{ cursor: "col-resize" }}
onMouseDown={event => resizeClick(event, index)}
>
|
</Grid2>
}
</Grid2>
</TableCell>
)