mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 07:53:31 +03:00
Add indentation for unencrypted warning text
Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
This commit is contained in:
parent
9731e275f8
commit
79b8fbc2a9
1 changed files with 6 additions and 4 deletions
|
@ -185,10 +185,12 @@ const NewRoomIntro = () => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const sub2 = _t("Your private messages are normally encrypted, but this room isn't. "+
|
const sub2 = _t(
|
||||||
|
"Your private messages are normally encrypted, but this room isn't. "+
|
||||||
"Usually this is due to an unsupported device or method being used, " +
|
"Usually this is due to an unsupported device or method being used, " +
|
||||||
"like email invites. <a>Enable encryption in settings.</a>", {},
|
"like email invites. <a>Enable encryption in settings.</a>", {},
|
||||||
{ a: sub => <a onClick={openRoomSettings} href="#">{sub}</a> });
|
{ a: sub => <a onClick={openRoomSettings} href="#">{sub}</a> },
|
||||||
|
);
|
||||||
|
|
||||||
return <div className="mx_NewRoomIntro">
|
return <div className="mx_NewRoomIntro">
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue