summaryrefslogtreecommitdiff
path: root/src/client/components/sub-note-content.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-10-25 01:23:41 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-10-25 01:23:41 +0900
commit7bd2a6ad611ffa4e4a0c96e49dec93350e0616db (patch)
tree1a3ad6ba33e7bfd6fd884052f61805dc4d3aa365 /src/client/components/sub-note-content.vue
parentregedit (diff)
parent自前ルーティング (#6759) (diff)
downloadsharkey-7bd2a6ad611ffa4e4a0c96e49dec93350e0616db.tar.gz
sharkey-7bd2a6ad611ffa4e4a0c96e49dec93350e0616db.tar.bz2
sharkey-7bd2a6ad611ffa4e4a0c96e49dec93350e0616db.zip
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
Diffstat (limited to 'src/client/components/sub-note-content.vue')
-rw-r--r--src/client/components/sub-note-content.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/sub-note-content.vue b/src/client/components/sub-note-content.vue
index 0bef072fe4..cb65a76495 100644
--- a/src/client/components/sub-note-content.vue
+++ b/src/client/components/sub-note-content.vue
@@ -3,9 +3,9 @@
<div class="body">
<span v-if="note.isHidden" style="opacity: 0.5">({{ $t('private') }})</span>
<span v-if="note.deletedAt" style="opacity: 0.5">({{ $t('deleted') }})</span>
- <router-link class="reply" v-if="note.replyId" :to="`/notes/${note.replyId}`"><Fa :icon="faReply"/></router-link>
+ <MkA class="reply" v-if="note.replyId" :to="`/notes/${note.replyId}`"><Fa :icon="faReply"/></MkA>
<Mfm v-if="note.text" :text="note.text" :author="note.user" :i="$store.state.i" :custom-emojis="note.emojis"/>
- <router-link class="rp" v-if="note.renoteId" :to="`/notes/${note.renoteId}`">RN: ...</router-link>
+ <MkA class="rp" v-if="note.renoteId" :to="`/notes/${note.renoteId}`">RN: ...</MkA>
</div>
<details v-if="note.files.length > 0">
<summary>({{ $t('withNFiles', { n: note.files.length }) }})</summary>