Skip to content

Commit

Permalink
fix(Button): add disabled class
Browse files Browse the repository at this point in the history
  • Loading branch information
eddywashere committed Feb 22, 2016
1 parent 7f4384e commit 96627ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Button extends React.Component {
'btn-' + color,
size ? 'btn-' + size : false,
block ? 'btn-block' : false,
{ active }
{ active, disabled: this.props.disabled }
);

if (El) {
Expand Down

0 comments on commit 96627ef

Please sign in to comment.