[Glitch] Surround mid-text display names with bdi tags

Port 7861c5f108 to glitch-soc
This commit is contained in:
Thibaut Girka
2018-10-22 18:52:59 +02:00
parent 323ae1403a
commit 0c7f710be1
3 changed files with 4 additions and 4 deletions

View File

@ -63,13 +63,13 @@ export default class NotificationFollow extends ImmutablePureComponent {
// Links to the display name.
const displayName = account.get('display_name_html') || account.get('username');
const link = (
<Permalink
<bdi><Permalink
className='notification__display-name'
href={account.get('url')}
title={account.get('acct')}
to={`/accounts/${account.get('id')}`}
dangerouslySetInnerHTML={{ __html: displayName }}
/>
/></bdi>
);
// Renders.