diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 17:51:08 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 17:51:08 +0900 |
| commit | f2fbf7f818ef244008cf8cafb3b1baba0496183e (patch) | |
| tree | 5124df39b19f5cb9f26cc90fe511f06b03e55b18 /src/web/app/mobile/views/components/posts.vue | |
| parent | wip (diff) | |
| download | misskey-f2fbf7f818ef244008cf8cafb3b1baba0496183e.tar.gz misskey-f2fbf7f818ef244008cf8cafb3b1baba0496183e.tar.bz2 misskey-f2fbf7f818ef244008cf8cafb3b1baba0496183e.zip | |
wip
Diffstat (limited to 'src/web/app/mobile/views/components/posts.vue')
| -rw-r--r-- | src/web/app/mobile/views/components/posts.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/app/mobile/views/components/posts.vue b/src/web/app/mobile/views/components/posts.vue index 48ed01d0a8..b028264b52 100644 --- a/src/web/app/mobile/views/components/posts.vue +++ b/src/web/app/mobile/views/components/posts.vue @@ -1,6 +1,7 @@ <template> <div class="mk-posts"> <slot name="head"></slot> + <slot></slot> <template v-for="(post, i) in _posts"> <x-post :post="post" :key="post.id"/> <p class="date" v-if="i != posts.length - 1 && post._date != _posts[i + 1]._date"> @@ -91,6 +92,9 @@ export default Vue.extend({ border-bottom-left-radius 4px border-bottom-right-radius 4px + &:empty + display none + > button margin 0 padding 16px |