Merge pull request #195 from blittle/react-0.14

Pass through props inside the decorator
This commit is contained in:
Christian Alfoni 2015-10-02 13:38:18 +02:00
commit 2c4f73dd8e
3 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,8 @@ module.exports = function () {
isRequired: this.isRequired,
showRequired: this.showRequired,
showError: this.showError,
isValidValue: this.isValidValue
isValidValue: this.isValidValue,
...this.props
});
}
});