-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: [M3-7116] Fix visual regression with Image Select option #9672
Conversation
@@ -27,6 +28,9 @@ const useStyles = makeStyles((theme: Theme) => ({ | |||
color: 'white', | |||
}, | |||
root: { | |||
'& *': { | |||
lineHeight: '1.2em', | |||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the relevant change - in this case it only applies to the image select options, but we should keep an eye on other selects. Could not find similar regressions anywhere else during testing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the quick fix! 🔨 Other selects I checked looked good and great cleanup as well 🧹
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed. 🚀
Description 📝
This PR fixes a small regression with the image select options introduced by #9636
The defect is not in production yet, so the current fix should be evaluated as re-establishing parity with production in our development branch. Therefore we don't need a changeset.
Note: the PR also cleans up import/exports and
React.FC
props in files touched by the fix.Preview 📷
How to test 🧪