fix emoji in account display name

This commit is contained in:
Nicolas Constant 2020-06-15 00:58:13 -04:00
parent e821c8a8dc
commit 9ad3ef81b4
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<a href class="account" title="open account" (click)="selected()">
<img src="{{account.avatar}}" class="account__avatar" />
<div class="account__name">{{ account.username }}</div>
<div class="account__name" innerHTML="{{ account | accountEmoji }}"></div>
<div class="account__fullhandle">@{{ account.acct }}</div>
</a>