Skip to content

Commit

Permalink
fix: favorite tooltip topleft flash (#2686)
Browse files Browse the repository at this point in the history
Fixes an issue where the tooltip would flash on the top left when going
through the rows.
  • Loading branch information
nunogois committed Dec 13, 2022
1 parent 4afd505 commit 212083b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -6,7 +6,7 @@ export const useStyles = makeStyles()(() => ({
width: '100%',
'&:hover': {
'.show-row-hover': {
display: 'inherit',
opacity: 1,
},
},
},
Expand Down
Expand Up @@ -14,7 +14,7 @@ interface IFavoriteIconCellProps {

const InactiveIconButton = styled(IconButton)(({ theme }) => ({
color: theme.palette.primary.main,
display: 'none',
opacity: 0,
}));

export const FavoriteIconCell: VFC<IFavoriteIconCellProps> = ({
Expand Down

0 comments on commit 212083b

Please sign in to comment.