Skip to content

Commit

Permalink
Merge pull request react-bootstrap#791 from AlexKVal/eslint
Browse files Browse the repository at this point in the history
Comment out no-unused-vars eslint warnings back.
  • Loading branch information
mtscout6 committed Jun 5, 2015
2 parents eeb7796 + 48f312f commit 54dd9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ButtonInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import childrenValueValidation from './utils/childrenValueInputValidation';

class ButtonInput extends InputBase {
renderFormGroup(children) {
let {bsStyle, value, ...other} = this.props; // eslint-disable-line object-shorthand
let {bsStyle, value, ...other} = this.props; // eslint-disable-line object-shorthand, no-unused-vars
return <FormGroup {...other}>{children}</FormGroup>;
}

Expand Down

0 comments on commit 54dd9fa

Please sign in to comment.