Event passed for Radiogroup (#1544)

old
Nilansh Arora 2017-08-02 21:56:34 +05:30 committed by Javi Velasco
parent 934ffd2000
commit 6fd1421143
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ const factory = (RadioButton) => {
disabled: false,
};
handleChange = (value) => {
if (this.props.onChange) this.props.onChange(value);
handleChange = (value, event) => {
if (this.props.onChange) this.props.onChange(value, event);
};
renderRadioButtons() {