Skip to content

Commit

Permalink
[fixed] Fix propType warning in ButtonInputExample
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimmy Jia committed May 15, 2015
1 parent a964ea2 commit ecb0861
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/ButtonInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ const ButtonInputExample = React.createClass({
getInitialState() {
return {
disabled: true,
style: ''
style: null
};
},

resetValidation() {
this.setState({
disabled: true,
style: ''
style: null
});
},

Expand Down

0 comments on commit ecb0861

Please sign in to comment.