diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-29 05:43:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-29 05:43:31 +0900 |
| commit | d7af18efbd1d85802145f39c4f1a99dc611b8b97 (patch) | |
| tree | 9853c505db20318bca5c9ee9ea1e3989f82eab0d /src/client/app/mobile/views | |
| parent | Improve usability (diff) | |
| download | misskey-d7af18efbd1d85802145f39c4f1a99dc611b8b97.tar.gz misskey-d7af18efbd1d85802145f39c4f1a99dc611b8b97.tar.bz2 misskey-d7af18efbd1d85802145f39c4f1a99dc611b8b97.zip | |
[Client] Renote数の表示を廃止
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 72f522bbca..86620736c6 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"/><p class="count" v-if="appearNote.renoteCount > 0">{{ appearNote.renoteCount }}</p> + <fa icon="retweet"/> </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 6fb0f56dbf..09e55a9b99 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"/><p class="count" v-if="appearNote.renoteCount > 0">{{ appearNote.renoteCount }}</p> + <fa icon="retweet"/> </button> <button v-else> <fa icon="ban"/> |