Skip to content

Commit

Permalink
Merge pull request reactioncommerce#4251 from reactioncommerce/fix-42…
Browse files Browse the repository at this point in the history
…23-nnnnat-numeric-input-event

fix: added event param to onBlur method in numericInput component
  • Loading branch information
kieckhafer authored May 17, 2018
2 parents 43e0e5d + c0fd61a commit 16a57b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class NumericInput extends Component {
* @param {Event} event Event object
* @return {void}
*/
onBlur = () => {
onBlur = (event) => {
let { value } = this.state;
if (value > this.props.maxValue) {
value = this.props.maxValue;
Expand Down

0 comments on commit 16a57b1

Please sign in to comment.