Skip to content

Commit

Permalink
[Card] fix missing trailing comas
Browse files Browse the repository at this point in the history
  • Loading branch information
cgestes committed Jul 16, 2015
1 parent 1520fe3 commit 2533f99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/card/card-actions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ let CardActions = React.createClass({
root: {
padding: 8,
position: 'relative',
}
},
};
},

propTypes: {
expandable: React.PropTypes.bool,
expandableController: React.PropTypes.bool
expandableController: React.PropTypes.bool,
},

render() {
Expand Down
4 changes: 2 additions & 2 deletions src/card/card-expandable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let CardExpandable = React.createClass({
bottom: 0,
margin: 'auto',
position: 'absolute',
}
},
};
},

Expand Down Expand Up @@ -47,7 +47,7 @@ let CardExpandable = React.createClass({


return expandableBtn;
}
},
});

module.exports = CardExpandable;

0 comments on commit 2533f99

Please sign in to comment.