got rid of last column size grabber
This commit is contained in:
parent
4d26cb0f05
commit
56f78dd906
1 changed files with 8 additions and 6 deletions
|
|
@ -543,12 +543,14 @@ export default function ResponsiveTable<T extends Object>(props: Props<T>) {
|
||||||
>
|
>
|
||||||
{column.title} {showOrderIcon(column)}
|
{column.title} {showOrderIcon(column)}
|
||||||
</Grid2>
|
</Grid2>
|
||||||
<Grid2
|
{index < columns.length-1 &&
|
||||||
sx={{ cursor: "col-resize" }}
|
<Grid2
|
||||||
onMouseDown={event => resizeClick(event, index)}
|
sx={{ cursor: "col-resize" }}
|
||||||
>
|
onMouseDown={event => resizeClick(event, index)}
|
||||||
|
|
>
|
||||||
</Grid2>
|
|
|
||||||
|
</Grid2>
|
||||||
|
}
|
||||||
</Grid2>
|
</Grid2>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue