fix onChange API change (does not need the name anymore)

This commit is contained in:
eric-burel 2019-03-15 16:20:24 +01:00
parent c7965e3b0f
commit 2ebabd2d5c

View file

@ -70,7 +70,7 @@ const MuiInput = createReactClass({
},
changeValue: function (value) {
this.props.onChange(this.props.name, value);
this.props.onChange(value);
},
handleBlur: function (event) {