Fix identifier wrapping

Fixes https://github.com/matrix-org/matrix.to/issues/153
This commit is contained in:
J. Ryan Stinnett
2020-09-29 09:32:26 +01:00
parent 11fd9e1c0f
commit 0e770d81d6
12 changed files with 45 additions and 22 deletions
+8 -2
View File
@@ -40,7 +40,10 @@ const Nheko: TextClient = {
<span>
Type{' '}
<code>
/join <b>{link.identifier}</b>
/join{' '}
<b className="matrixIdentifier">
{link.identifier}
</b>
</code>
</span>
);
@@ -49,7 +52,10 @@ const Nheko: TextClient = {
<span>
Type{' '}
<code>
/invite <b>{link.identifier}</b>
/invite{' '}
<b className="matrixIdentifier">
{link.identifier}
</b>
</code>
</span>
);