Skip to content

Commit

Permalink
Merge pull request react-bootstrap#799 from AlexKVal/eslint
Browse files Browse the repository at this point in the history
Remove no-unused-vars comment.
  • Loading branch information
AlexKVal committed Jun 7, 2015
2 parents d9b08d3 + ddd5b2e commit 93967d1
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, no-unused-vars
let {bsStyle, value, ...other} = this.props; // eslint-disable-line object-shorthand
return <FormGroup {...other}>{children}</FormGroup>;
}

Expand Down

0 comments on commit 93967d1

Please sign in to comment.