diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-01-12 09:38:44 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-01-12 09:38:44 +0900 |
| commit | c5dc25cb9e3bf43b6d667e72651e0fb6ce107d82 (patch) | |
| tree | 490505b3418dc076f3d10388802ee437f02c1936 /src/client/app/mobile/views | |
| parent | [Client] Improve UI (diff) | |
| download | misskey-c5dc25cb9e3bf43b6d667e72651e0fb6ce107d82.tar.gz misskey-c5dc25cb9e3bf43b6d667e72651e0fb6ce107d82.tar.bz2 misskey-c5dc25cb9e3bf43b6d667e72651e0fb6ce107d82.zip | |
Revert "[Client] Renote数の表示を廃止"
This reverts commit d7af18efbd1d85802145f39c4f1a99dc611b8b97.
Diffstat (limited to 'src/client/app/mobile/views')
| -rw-r--r-- | src/client/app/mobile/views/components/note-detail.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/components/note.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index 86620736c6..72f522bbca 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -66,7 +66,7 @@ <p class="count" v-if="appearNote.repliesCount > 0">{{ appearNote.repliesCount }}</p> </button> <button v-if="['public', 'home'].includes(appearNote.visibility)" @click="renote()" title="Renote"> - <fa icon="retweet"/> + <fa icon="retweet"/><p class="count" v-if="appearNote.renoteCount > 0">{{ appearNote.renoteCount }}</p> </button> <button v-else> <fa icon="ban"/> diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 1533e0a62a..4b6419ef4a 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -44,7 +44,7 @@ <p class="count" v-if="appearNote.repliesCount > 0">{{ appearNote.repliesCount }}</p> </button> <button v-if="['public', 'home'].includes(appearNote.visibility)" @click="renote()" title="Renote"> - <fa icon="retweet"/> + <fa icon="retweet"/><p class="count" v-if="appearNote.renoteCount > 0">{{ appearNote.renoteCount }}</p> </button> <button v-else> <fa icon="ban"/> |