Skip to content
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 FileInput propTypes for label prop #7869

Merged

Conversation

slax57
Copy link
Contributor

@slax57 slax57 commented Jun 21, 2022

Fixes #7868

@@ -214,7 +214,7 @@ FileInput.propTypes = {
className: PropTypes.string,
id: PropTypes.string,
isRequired: PropTypes.bool,
label: PropTypes.string,
label: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I'm not mistaken, this can also be an element

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe you are right. But all other Input component have it declared this way in the propTypes (I've checked).
We should either leave it as is, or change this for all Input components, which goes a bit beyond the scope of this issue. What do you think?

@djhi djhi added this to the 4.1.6 milestone Jun 21, 2022
@djhi djhi merged commit d8737f2 into master Jun 21, 2022
@djhi djhi deleted the 7868-prop-types-does-not-accept-boolean-for-label-props branch June 21, 2022 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
RFR Ready For Review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Prop types does not accept boolean for label props
2 participants