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)}
|
||||
</Grid2>
|
||||
<Grid2
|
||||
sx={{ cursor: "col-resize" }}
|
||||
onMouseDown={event => resizeClick(event, index)}
|
||||
>
|
||||
|
|
||||
</Grid2>
|
||||
{index < columns.length-1 &&
|
||||
<Grid2
|
||||
sx={{ cursor: "col-resize" }}
|
||||
onMouseDown={event => resizeClick(event, index)}
|
||||
>
|
||||
|
|
||||
</Grid2>
|
||||
}
|
||||
</Grid2>
|
||||
</TableCell>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue