Skip to content

Commit

Permalink
fix: eslint object-curly-spacing error
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Rodionov committed Jan 12, 2016
1 parent 6913122 commit 6d1d42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/portal.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class Portal extends React.Component {

render() {
if (this.props.openByClickOn) {
return React.cloneElement(this.props.openByClickOn, { onClick: this.openPortal.bind(this, this.props) });
return React.cloneElement(this.props.openByClickOn, {onClick: this.openPortal.bind(this, this.props)});
} else {
return null;
}
Expand Down

0 comments on commit 6d1d42c

Please sign in to comment.