diff options
| author | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-02-15 13:36:53 +0900 |
|---|---|---|
| committer | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-02-15 13:36:53 +0900 |
| commit | 1f2be831e9cee6277d0a0d2bd9553565c02a9a5c (patch) | |
| tree | 2e86956e424d4452100ddbe5989ac4730455ac12 /src/web | |
| parent | wip (diff) | |
| download | misskey-1f2be831e9cee6277d0a0d2bd9553565c02a9a5c.tar.gz misskey-1f2be831e9cee6277d0a0d2bd9553565c02a9a5c.tar.bz2 misskey-1f2be831e9cee6277d0a0d2bd9553565c02a9a5c.zip | |
wip
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/mobile/views/sub-post-content.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/mobile/views/sub-post-content.vue b/src/web/app/mobile/views/sub-post-content.vue index e3e059f160..48f3791aa5 100644 --- a/src/web/app/mobile/views/sub-post-content.vue +++ b/src/web/app/mobile/views/sub-post-content.vue @@ -3,11 +3,11 @@ <div class="body"> <a class="reply" v-if="post.reply_id">%fa:reply%</a> <mk-post-html v-if="post.ast" :ast="post.ast" :i="$root.$data.os.i"/> - <a class="quote" v-if="post.repost_id" href={ '/post:' + post.repost_id }>RP: ...</a> + <a class="quote" v-if="post.repost_id">RP: ...</a> </div> <details v-if="post.media"> - <summary>({ post.media.length }個のメディア)</summary> - <mk-images images={ post.media }/> + <summary>({{ post.media.length }}個のメディア)</summary> + <mk-images :images="post.media"/> </details> <details v-if="post.poll"> <summary>%i18n:mobile.tags.mk-sub-post-content.poll%</summary> |