-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[Joy] Fix Checkbox
prop type custom color warning
#36691
Conversation
…olor-warning Fix: Checkbox prop type color warning (mui#36678)
Netlify deploy previewhttps://deploy-preview-36691--material-ui.netlify.app/ Bundle size report |
color: PropTypes.oneOfType([ | ||
PropTypes.oneOf(['danger', 'info', 'neutral', 'primary', 'success', 'warning']), | ||
PropTypes.string, | ||
]), |
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.
color: PropTypes.oneOfType([ | |
PropTypes.oneOf(['danger', 'info', 'neutral', 'primary', 'success', 'warning']), | |
PropTypes.string, | |
]), | |
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([ | |
PropTypes.oneOf(['danger', 'info', 'neutral', 'primary', 'success', 'warning']), | |
PropTypes.string, | |
]), |
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.
Need to add it so that the PropTypes.string is not removed.
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.
Added
…olor-warning Code review fix (mui#36678)
@siriwatknp I have made the review changes. But one of the CircleCI checks failed. Can you please provide the next step? |
@amal-qb the couple of commands that make fail your CI are How can we solve it? Run these commands locally, if the result satisfies your expectations commit it. |
…olor-warning Fix: Checkbox prop type color warning (mui#36678) - code review fixes
Checkbox
prop type custom color warning
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.
@amal-qb Looks good. Thanks for the first PR. Looking forward for more.
Fixes #36678