-
Notifications
You must be signed in to change notification settings - Fork 50.2k
Warn when "false" or "true" is the value of a boolean DOM prop #13372
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
Changes from 1 commit
1447508
b8f83cd
f3248f2
f70a0eb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -444,7 +444,7 @@ describe('ReactDOMInput', () => { | |
|
|
||
| it('should take `defaultValue` when changing to uncontrolled input', () => { | ||
| const node = ReactDOM.render( | ||
| <input type="text" value="0" readOnly="true" />, | ||
| <input type="text" value="0" readOnly={true} />, | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test was broken by adding the warning on |
||
| container, | ||
| ); | ||
| expect(node.value).toBe('0'); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -227,19 +227,20 @@ if (__DEV__) { | |
| return false; | ||
| } | ||
|
|
||
| // Warn when passing the string 'false' into a boolean prop | ||
| // Warn when passing the strings 'false' or 'true' into a boolean prop | ||
| if ( | ||
| value === 'false' && | ||
| (value === 'false' || value === 'true') && | ||
| propertyInfo !== null && | ||
| propertyInfo.type === BOOLEAN | ||
| ) { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let’s make |
||
| warning( | ||
| false, | ||
| 'Received the string `%s` for the boolean attribute `%s`. ' + | ||
| 'Did you mean %s={false}?', | ||
| 'Did you mean %s={%s}?', | ||
| value, | ||
| name, | ||
| name, | ||
| value, | ||
| ); | ||
| warnedProperties[name] = true; | ||
| return true; | ||
|
|
||
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.
Maybe add
Although this works, it will not work as expected if you pass the string "false".to thetruecase.