Split long string over two lines

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/21833/head
Aaron Raimist 2018-10-23 17:20:54 -05:00
parent 92bfb42784
commit fe901142aa
No known key found for this signature in database
GPG Key ID: 37419210002890EF
1 changed files with 2 additions and 3 deletions

View File

@ -753,9 +753,8 @@ export default React.createClass({
warnings.push((
<span className="warning">
{ " " /* Whitespace, otherwise the sentences get smashed together */ }
{ /* eslint-disable max-len */ }
{ _t("You are an administrator of this community. You will not be able to rejoin without an invite from another administrator.") }
{ /* eslint-enable max-len */ }
{ _t("You are an administrator of this community. You will not be " +
"able to rejoin without an invite from another administrator.") }
</span>
));
}