summaryrefslogtreecommitdiff
path: root/src/client/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-05-08 07:08:02 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-05-08 07:08:02 +0900
commitecd71ef5ff0409869a3cce81e12562896a0175a8 (patch)
tree9bccd407cfd95dbfc02a28db5f0ee80c40c4c9a5 /src/client/app/mobile
parentFix #1574 (diff)
downloadmisskey-ecd71ef5ff0409869a3cce81e12562896a0175a8.tar.gz
misskey-ecd71ef5ff0409869a3cce81e12562896a0175a8.tar.bz2
misskey-ecd71ef5ff0409869a3cce81e12562896a0175a8.zip
Fix bug
Diffstat (limited to 'src/client/app/mobile')
-rw-r--r--src/client/app/mobile/views/pages/note.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/pages/note.vue b/src/client/app/mobile/views/pages/note.vue
index aff0d5aa52..146d89d22b 100644
--- a/src/client/app/mobile/views/pages/note.vue
+++ b/src/client/app/mobile/views/pages/note.vue
@@ -6,8 +6,8 @@
<mk-note-detail :note="note"/>
</div>
<footer>
- <a v-if="note.prev" :href="note.prev">%fa:angle-left% %i18n:@prev%</a>
- <a v-if="note.next" :href="note.next">%i18n:@next% %fa:angle-right%</a>
+ <router-link v-if="note.prev" :to="note.prev">%fa:angle-left% %i18n:@prev%</router-link>
+ <router-link v-if="note.next" :to="note.next">%i18n:@next% %fa:angle-right%</router-link>
</footer>
</main>
</mk-ui>