separate screen_name and screen_name_ui with decoded punycode

This commit is contained in:
Shpuld Shpuldson 2021-02-26 16:23:11 +02:00
parent 59db4582b0
commit 09fe160e8b
14 changed files with 26 additions and 24 deletions

View file

@ -26,7 +26,7 @@
icon="retweet"
/>
<router-link :to="userProfileLink">
{{ status.user.screen_name }}
{{ status.user.screen_name_ui }}
</router-link>
</small>
<small
@ -156,10 +156,10 @@
</h4>
<router-link
class="account-name"
:title="status.user.screen_name"
:title="status.user.screen_name_ui"
:to="userProfileLink"
>
{{ status.user.screen_name }}
{{ status.user.screen_name_ui }}
</router-link>
<img
v-if="!!(status.user && status.user.favicon)"