Skip to content

Commit

Permalink
added tooltip back to be consistent with other table actions
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Mar 27, 2022
1 parent f3b7d33 commit 3853c6c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions interface/src/project/DashboardData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import {
ListItem,
ListItemText,
Grid,
useMediaQuery
useMediaQuery,
Tooltip
} from '@mui/material';

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

0 comments on commit 3853c6c

Please sign in to comment.