Fix missing username conversions (#3922)
This commit is contained in:
parent
fa051df381
commit
160f424466
7 changed files with 21 additions and 20 deletions
|
|
@ -1,7 +1,8 @@
|
|||
<template>
|
||||
<mk-ui>
|
||||
<template slot="header" v-if="!fetching">
|
||||
<img :src="user.avatarUrl" alt="">{{ $t('followers-of', { name }) }}
|
||||
<img :src="user.avatarUrl" alt="">
|
||||
<misskey-flavored-markdown :text="$t('followers-of', { name })" :shouldBreak="false" :plainText="true" :custom-emojis="user.emojis"/>
|
||||
</template>
|
||||
<mk-users-list
|
||||
v-if="!fetching"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
<template>
|
||||
<mk-ui>
|
||||
<template slot="header" v-if="!fetching">
|
||||
<img :src="user.avatarUrl" alt="">{{ $t('following-of', { name }) }}
|
||||
<img :src="user.avatarUrl" alt="">
|
||||
<misskey-flavored-markdown :text="$t('following-of', { name })" :shouldBreak="false" :plainText="true" :custom-emojis="user.emojis"/>
|
||||
</template>
|
||||
<mk-users-list
|
||||
v-if="!fetching"
|
||||
|
|
|
|||
|
|
@ -2,8 +2,9 @@
|
|||
<mk-ui>
|
||||
<span slot="header"><span style="margin-right:4px;"><fa icon="cog"/></span>{{ $t('settings') }}</span>
|
||||
<main>
|
||||
<div class="signin-as" v-html="this.$t('signed-in-as').replace('{}', `<b>${name}</b>`)"></div>
|
||||
|
||||
<div class="signed-in-as">
|
||||
<misskey-flavored-markdown :text="$t('signed-in-as').replace('{}', name)" :shouldBreak="false" :plainText="true" :custom-emojis="$store.state.i.emojis"/>
|
||||
</div>
|
||||
<div>
|
||||
<x-profile-editor/>
|
||||
|
||||
|
|
@ -381,6 +382,7 @@ main
|
|||
color var(--mobileSignedInAsFg)
|
||||
background var(--mobileSignedInAsBg)
|
||||
box-shadow 0 3px 1px -2px rgba(#000, 0.2), 0 2px 2px 0 rgba(#000, 0.14), 0 1px 5px 0 rgba(#000, 0.12)
|
||||
font-weight bold
|
||||
|
||||
> .signout
|
||||
margin 16px
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue