summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/pages
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2019-08-11 19:48:54 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-08-11 19:48:54 +0900
commit01d018510cce5677d84af2186abd805cf0212b41 (patch)
treebca652f10a1fcd314bc18b9c69c51ed24f5957c4 /src/client/app/mobile/views/pages
parentElasticsearchのインデックス名をconfigで変更できるように (#5... (diff)
downloadmisskey-01d018510cce5677d84af2186abd805cf0212b41.tar.gz
misskey-01d018510cce5677d84af2186abd805cf0212b41.tar.bz2
misskey-01d018510cce5677d84af2186abd805cf0212b41.zip
ユーザー名の突き抜けの修正 (#5261)
* 突き抜け deck フォロリク/vote * 突き抜け desktop * notification reactionで絵文字の縦がずれないように * Fix: ユーザーページの名前が突き抜ける * Fix: デッキカラムでユーザー名が長いと閉じれなくなる * デッキのカウントの位置が右になってしまってたのを修正 * デッキヘッダーのellipsis
Diffstat (limited to 'src/client/app/mobile/views/pages')
-rw-r--r--src/client/app/mobile/views/pages/user/index.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/user/index.vue b/src/client/app/mobile/views/pages/user/index.vue
index 2e4998178f..3ae543dd93 100644
--- a/src/client/app/mobile/views/pages/user/index.vue
+++ b/src/client/app/mobile/views/pages/user/index.vue
@@ -17,7 +17,7 @@
<mk-follow-button v-if="$store.getters.isSignedIn && $store.state.i.id != user.id" :user="user"/>
</div>
<div class="title">
- <h1><mk-user-name :user="user" :key="user.id"/></h1>
+ <h1><mk-user-name :user="user" :key="user.id" :nowrap="false"/></h1>
<span class="username"><mk-acct :user="user" :detail="true" :key="user.id"/></span>
<span class="followed" v-if="user.isFollowed">{{ $t('follows-you') }}</span>
</div>