Fix onChange function on MuiSelect component

This commit is contained in:
Harold 2019-03-18 19:11:23 -06:00
parent 66fd1aedaf
commit 3e033cdfbb

View file

@ -86,7 +86,7 @@ const MuiSelect = createReactClass({
},
changeValue: function (value) {
this.props.onChange(this.props.name, value);
this.props.onChange(value);
},
render: function () {