Skip to content

Commit

Permalink
Add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
YoYuUm committed Jan 11, 2016
1 parent 3c6b7af commit 6eb5838
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/card/CardActions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class CardActions extends Component {
static propTypes = {
children: PropTypes.any,
className: PropTypes.string
}
};

render () {
const { children, className, ...other } = this.props;
Expand Down
2 changes: 1 addition & 1 deletion components/card/CardMedia.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class CardMedia extends Component {
PropTypes.string,
PropTypes.element
])
}
};

render () {
const { aspectRatio, children, className, color, contentOverlay, image, ...other } = this.props;
Expand Down
2 changes: 1 addition & 1 deletion components/card/CardText.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class CardText extends Component {
static propTypes = {
children: PropTypes.any,
className: PropTypes.string
}
};

render () {
const { children, className, ...other } = this.props;
Expand Down
2 changes: 1 addition & 1 deletion components/tooltip/Tooltip.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Tooltip = (ComposedComponent) => class extends React.Component {
if (this.timeout) clearTimeout(this.timeout);
if (this.props.tooltipHideOnClick) this.setState({active: false});
if (this.props.onClick) this.props.onClick();
}
};

render () {
const {children, className, tooltip, tooltipDelay, tooltipHideOnClick, ...other} = this.props;
Expand Down
2 changes: 1 addition & 1 deletion spec/components/dialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class DialogTest extends React.Component {
this.setState({
active: !this.state.active
});
}
};

actions = [
{ label: 'Disagree', primary: true, onClick: this.handleToggle },
Expand Down
2 changes: 1 addition & 1 deletion spec/components/drawer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class DrawerTest extends React.Component {

handleToggleRight = () => {
this.setState({rightActive: !this.state.rightActive});
}
};

render () {
return (
Expand Down

0 comments on commit 6eb5838

Please sign in to comment.