diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-13 04:48:09 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-13 04:48:09 +0900 |
| commit | e1109b168c8d2410a3d1560b39a0c7be5aa06df2 (patch) | |
| tree | c4c439db6b94feb4410aab2b622d29d8a4a5288f /src | |
| parent | Merge pull request #2895 from syuilo/greenkeeper/reconnecting-websocket-4.1.6 (diff) | |
| download | sharkey-e1109b168c8d2410a3d1560b39a0c7be5aa06df2.tar.gz sharkey-e1109b168c8d2410a3d1560b39a0c7be5aa06df2.tar.bz2 sharkey-e1109b168c8d2410a3d1560b39a0c7be5aa06df2.zip | |
Clean up
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/notes.note.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/desktop/views/components/notes.note.vue b/src/client/app/desktop/views/components/notes.note.vue index 5df87406fc..7714557ae7 100644 --- a/src/client/app/desktop/views/components/notes.note.vue +++ b/src/client/app/desktop/views/components/notes.note.vue @@ -36,7 +36,7 @@ <mk-url-preview v-for="url in urls" :url="url" :key="url"/> </div> </div> - <footer v-if="appearNote.deletedAt == null"> + <footer> <mk-reactions-viewer :note="appearNote" ref="reactionsViewer"/> <button class="replyButton" @click="reply()" title="%i18n:@reply%"> <template v-if="appearNote.reply">%fa:reply-all%</template> diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 6d54c9a93f..b190564a10 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -43,7 +43,7 @@ </div> <span class="app" v-if="appearNote.app">via <b>{{ appearNote.app.name }}</b></span> </div> - <footer v-if="appearNote.deletedAt == null"> + <footer> <mk-reactions-viewer :note="appearNote" ref="reactionsViewer"/> <button @click="reply()"> <template v-if="appearNote.reply">%fa:reply-all%</template> |