-
Notifications
You must be signed in to change notification settings - Fork 46.9k
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 #7099 #7251
Fix #7099 #7251
Conversation
@@ -64,6 +64,7 @@ var ReactDOMInput = { | |||
// Make sure we set .type before any other properties (setting .value | |||
// before .type means .value is lost in IE11 and below) | |||
type: undefined, | |||
step: undefined, |
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.
Can you add a comment about why we're setting step
as well.
@zpao Comments updated |
@troydemonbreun The min/max properties on the range input also cause the same problem. Please see #7170. |
Yeah, I will fix that also, thanks!
|
Fix for #7099