Revert some changes to avoid re-translation

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-04-30 12:30:14 +02:00
parent c6bd2c7d67
commit 2e62b18617
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
2 changed files with 10 additions and 10 deletions

View file

@ -43,15 +43,15 @@ import {mediaFromMxc} from "../../customisations/Media";
import {replaceableComponent} from "../../utils/replaceableComponent";
const LONG_DESC_PLACEHOLDER = _td(
"<h1>HTML for your community's page</h1>" +
"<p>" +
"Use the long description to introduce new members to the community, or distribute" +
"some important <a href=\"foo\">links</a>" +
"</p>" +
"<p>" +
"You can even add images with Matrix URLs <img src=\"mxc://url\" />" +
"</p>",
);
`<h1>HTML for your community's page</h1>
<p>
Use the long description to introduce new members to the community, or distribute
some important <a href="foo">links</a>
</p>
<p>
You can even add images with Matrix URLs <img src="mxc://url" />
</p>
`);
const RoomSummaryType = PropTypes.shape({
room_id: PropTypes.string.isRequired,