diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-13 12:43:19 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-13 12:43:19 +0900 |
| commit | 7f2356ba4bf45b1a240c557d942ef10effb092d4 (patch) | |
| tree | e95a09a398cb6e7d1b6bdd783c79df3eebe358cd /src/client/ui | |
| parent | fix bug (diff) | |
| download | misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.tar.gz misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.tar.bz2 misskey-7f2356ba4bf45b1a240c557d942ef10effb092d4.zip | |
Tweak UI
Diffstat (limited to 'src/client/ui')
| -rw-r--r-- | src/client/ui/_common_/header.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/ui/_common_/header.vue b/src/client/ui/_common_/header.vue index 347c60f021..a60e1df73f 100644 --- a/src/client/ui/_common_/header.vue +++ b/src/client/ui/_common_/header.vue @@ -8,8 +8,8 @@ <div class="title"> <Fa v-if="info.icon" :icon="info.icon" :key="info.icon" class="icon"/> <MkAvatar v-else-if="info.avatar" class="avatar" :user="info.avatar" :disable-preview="true"/> - <span v-if="info.title" class="text">{{ info.title }}</span> - <MkUserName v-else-if="info.userName" :user="info.userName" :nowrap="false" class="text"/> + <MkUserName v-if="info.userName" :user="info.userName" :nowrap="false" class="text"/> + <span v-else-if="info.title" class="text">{{ info.title }}</span> </div> </div> <div class="buttons"> |