added tooltip back to be consistent with other table actions

This commit is contained in:
proddy
2022-03-27 22:14:20 +02:00
parent f3b7d33372
commit 3853c6ca18

View File

@@ -20,7 +20,8 @@ import {
ListItem, ListItem,
ListItemText, ListItemText,
Grid, Grid,
useMediaQuery useMediaQuery,
Tooltip
} from '@mui/material'; } from '@mui/material';
import TableCell, { tableCellClasses } from '@mui/material/TableCell'; import TableCell, { tableCellClasses } from '@mui/material/TableCell';
@@ -525,7 +526,9 @@ const DashboardData: FC = () => {
<StyledTableCell padding="checkbox"> <StyledTableCell padding="checkbox">
{dv.c && me.admin && ( {dv.c && me.admin && (
<IconButton size="small"> <IconButton size="small">
<EditIcon color="primary" fontSize="small" /> <Tooltip title="Change value...">
<EditIcon color="primary" fontSize="small" />
</Tooltip>
</IconButton> </IconButton>
)} )}
</StyledTableCell> </StyledTableCell>