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

Use an ordered property list for inputs, fix some Chrome number input issues #7474

Closed
wants to merge 19 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Place min/max ahead of value input prop order list
  • Loading branch information
nhunzaker committed Sep 29, 2016
commit cc54aa40b9fd485a694f21ce52254026fa6c6078
3 changes: 2 additions & 1 deletion src/renderers/dom/shared/HTMLDOMPropertyConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ var HTMLDOMPropertyConfig = {
// Make sure we set .step before .value (setting .value before .step
// means .value is rounded on mount: based upon step precision)
'step',
// Min and max need to be set before value for range inputs.
// Fix bug in range inputs initial render
// https://github.com/facebook/react/issues/7170
'min',
'max',
'value',
Expand Down