Skip to content

Commit eb3f69b

Browse files
committed
fix: [PROD-13949] fix tooltip display issue
1 parent daa61e6 commit eb3f69b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/misc/TooltipInfo/TooltipInfo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ export const TooltipInfo = ({ title, variant }) =>
77
title ? (
88
<FadingTooltip title={title}>
99
{variant === 'small' ? (
10-
<InfoOutlinedIcon color="action" fontSize="small" />
10+
<InfoOutlinedIcon color="action" fontSize="small" sx={{ display: 'inherit' }} />
1111
) : (
12-
<InfoOutlinedIcon color="inherit" fontSize="inherit" />
12+
<InfoOutlinedIcon color="inherit" fontSize="inherit" sx={{ display: 'inherit' }} />
1313
)}
1414
</FadingTooltip>
1515
) : null;

0 commit comments

Comments
 (0)