Skip to content

Commit

Permalink
fix: fix tooltips props in basic input components
Browse files Browse the repository at this point in the history
Co-authored-by: Nicolas Borde <nicolas.borde@cosmotech.com>
  • Loading branch information
csm-thu and nborde-CSM committed Apr 11, 2023
1 parent 715887a commit 8caa6f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/inputs/BasicInputs/BasicEnumInput/BasicEnumInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const BasicEnumInput = (props) => {
</MenuItem>
))}
</TextField>
<TooltipInfo title={tooltipText} size="small" />
<TooltipInfo title={tooltipText} variant="small" />
</Stack>
</Grid>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const BasicInputPlaceholder = ({ id, label, tooltipText, value, ...otherP
<Typography data-cy="disabled-input-label" variant="subtitle2" color="textSecondary">
{label}
</Typography>
<TooltipInfo title={tooltipText} size="small" />
<TooltipInfo title={tooltipText} />
</Stack>
<Typography data-cy="disabled-input-value" variant="body2" sx={{ ml: 1 }}>
{value}
Expand Down

0 comments on commit 8caa6f0

Please sign in to comment.