mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-01-01 08:26:14 +01:00
Fixed Emoji in usernames of profile's owner not visible in the Pages and Plays tabs
This commit is contained in:
parent
324449786d
commit
b2387cbfef
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</p>
|
</p>
|
||||||
<footer>
|
<footer>
|
||||||
<img class="icon" :src="flash.user.avatarUrl"/>
|
<img class="icon" :src="flash.user.avatarUrl"/>
|
||||||
<p>{{ userName(flash.user) }}</p>
|
<MkUserName :key="flash.user.id" :user="flash.user"/>
|
||||||
</footer>
|
</footer>
|
||||||
</article>
|
</article>
|
||||||
</MkA>
|
</MkA>
|
||||||
|
|
|
@ -21,7 +21,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<p v-if="page.summary" :title="page.summary">{{ page.summary.length > 85 ? page.summary.slice(0, 85) + '…' : page.summary }}</p>
|
<p v-if="page.summary" :title="page.summary">{{ page.summary.length > 85 ? page.summary.slice(0, 85) + '…' : page.summary }}</p>
|
||||||
<footer>
|
<footer>
|
||||||
<img v-if="page.user.avatarUrl" class="icon" :src="page.user.avatarUrl"/>
|
<img v-if="page.user.avatarUrl" class="icon" :src="page.user.avatarUrl"/>
|
||||||
<p>{{ userName(page.user) }}</p>
|
<MkUserName :key="page.user.id" :user="page.user"/>
|
||||||
</footer>
|
</footer>
|
||||||
</article>
|
</article>
|
||||||
</MkA>
|
</MkA>
|
||||||
|
|
Loading…
Reference in a new issue