diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-08-11 19:48:54 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-08-11 19:48:54 +0900 |
| commit | 01d018510cce5677d84af2186abd805cf0212b41 (patch) | |
| tree | bca652f10a1fcd314bc18b9c69c51ed24f5957c4 /src/client/app/common/views/components | |
| parent | Elasticsearchのインデックス名をconfigで変更できるように (#5... (diff) | |
| download | misskey-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/common/views/components')
| -rw-r--r-- | src/client/app/common/views/components/user-name.vue | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/user-name.vue b/src/client/app/common/views/components/user-name.vue index 6aca36acbd..425cb587c4 100644 --- a/src/client/app/common/views/components/user-name.vue +++ b/src/client/app/common/views/components/user-name.vue @@ -1,5 +1,5 @@ <template> -<mfm :text="user.name || user.username" :plain="true" :nowrap="true" :custom-emojis="user.emojis"/> +<mfm :text="user.name || user.username" :plain="true" :nowrap="nowrap" :custom-emojis="user.emojis"/> </template> <script lang="ts"> @@ -10,7 +10,11 @@ export default Vue.extend({ user: { type: Object, required: true - } + }, + nowrap: { + type: Boolean, + default: true + }, } }); </script> |