Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fzzzy committed Jul 12, 2017
1 parent 68cd0bf commit 5ae67cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/components/LocalizedHtml.js
Expand Up @@ -7,7 +7,7 @@ export default class LocalizedHtml extends Localized {
render() {
const result = super.render();
if (typeof result.props.children === 'string') {
return React.cloneElement(result, {children: parser(result.props.children)});
return React.cloneElement(result, { children: parser(result.props.children) });
}
return result;
}
Expand Down

0 comments on commit 5ae67cf

Please sign in to comment.