Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
* dev: (121 commits)
  Adding event to radio group
  Revert "Merge branch 'dev' of github.com:react-toolbox/react-toolbox into dev"
  Fix react-toolbox#1219
  Allow numbers for Input value prop. Fixes react-toolbox#1180
  Move eslint-plugin-babel to devDependencies (react-toolbox#1222)
  Move gulp-rimraf to devDependencies (react-toolbox#1214)
  Eslint plugin compat
  Remove tests from build and remove sinon
  Use Jest 🃏 and upgrade Webpack and other dependencies
  Fixes react-toolbox#1086 (react-toolbox#1212)
  Import Ramda values function directly (react-toolbox#1209)
  Fixes react-toolbox#1195
  How to hide AppBar icon based on permanentAt value (react-toolbox#1194)
  Bugfix: Propert selector for disabled value in Dropdown
  Move `react-style-proptype` to non-dev deps (react-toolbox#1190)
  handle defaultValue to <Input /> (react-toolbox#1178)
  Add $input-icon-right-space var to add the correct spacing to the input based on Material Spec. (react-toolbox#1188)
  fixed broken link (react-toolbox#1181)
  Update Changelog
  Release 2.0.0-beta.6
  ...
  • Loading branch information
Ankit Ladhania committed May 29, 2017
2 parents 008e3ea + b0288f5 commit 9327715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/radio/RadioGroup.js
Expand Up @@ -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 () {
Expand Down

0 comments on commit 9327715

Please sign in to comment.