Appease the linter

pull/21833/head
Travis Ralston 2019-01-28 18:57:11 -07:00
parent f8de4ba2b0
commit 5948f9bc43
1 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,8 @@ module.exports = React.createClass({
let upgradeText = (
<div>
<div className="mx_RoomUpgradeWarningBar_body">
{_t("This room is using an unstable room version. If you aren't expecting this, please upgrade the room.")}
{_t("This room is using an unstable room version. If you aren't expecting " +
"this, please upgrade the room.")}
</div>
<p className="mx_RoomUpgradeWarningBar_upgradelink">
<AccessibleButton onClick={this.onUpgradeClick}>
@ -60,7 +61,8 @@ module.exports = React.createClass({
</div>
<p className="mx_RoomUpgradeWarningBar_upgradelink">
<AccessibleButton onClick={this.onUpgradeClick}>
{_t("Click here to upgrade to the latest room version and ensure room integrity is protected.")}
{_t("Click here to upgrade to the latest room version and ensure room integrity " +
"is protected.")}
</AccessibleButton>
</p>
</div>