-
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
Input elements always rendered with name
attribute
#7198
Comments
Is using React 15.1.0 so it's not showing there, but yes I see the problem as well. cc @jimfb #6406 https://github.com/facebook/react/pull/6406/files#diff-1b0e3b280991cd0b7cde194b30353b3eR253 |
So there are two problems with #6406. https://github.com/facebook/react/pull/6406/files#diff-1b0e3b280991cd0b7cde194b30353b3eR250 + https://github.com/facebook/react/pull/6406/files#diff-1b0e3b280991cd0b7cde194b30353b3eR253 should only be set when https://github.com/facebook/react/pull/6406/files#diff-1b0e3b280991cd0b7cde194b30353b3eR250 should set it to |
@syranide I've updated the first gist with proper version. Sorry messed it up a bit. |
If there are no objections, I'd like to try and fix this one. On Wednesday, 6 July 2016, Andrey Okonetchnikov notifications@github.com
|
I'm already on it. |
k, no problem |
Do you want to request a feature or report a bug?
This is a bug (I think)
What is the current behavior?
When rendering
<input type="..." />
(without name attribute), it will render<input type="..." name />
to the DOM.If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar (template: https://jsfiddle.net/reactjs/69z2wepo/).
Here is the example with the regression using React 15.2.0: https://esnextb.in/?gist=c4923716061ca73e37f7ed476920aa9c
What is the expected behavior?
No
name
attribute rendered if it is not provided.Here is the expected behavior with React 15.1.0: https://esnextb.in/?gist=aee86dfa6eec38aa2bc24b4c25425905
Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?
Regression: v15.2.0
Good: v15.1.0
The text was updated successfully, but these errors were encountered: