Skip to content

Commit

Permalink
fix: incorrect hint icon size (#2601)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 authored Oct 18, 2024
1 parent 2ca40e1 commit 8bf8bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/component/common/LabelHint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const LabelHint = ({ children, title, size = 15 }: Props) => {
<Tooltip title={title} disableInteractive>
<StyledLabelBody>
{children}
<HelpCircle style={{ width: size }} />
<HelpCircle style={{ width: size, height: size }} />
</StyledLabelBody>
</Tooltip>
);
Expand Down

0 comments on commit 8bf8bd6

Please sign in to comment.