diff options
Diffstat (limited to 'src/web/app/desktop/views/components/timeline.vue')
| -rw-r--r-- | src/web/app/desktop/views/components/timeline.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/desktop/views/components/timeline.vue b/src/web/app/desktop/views/components/timeline.vue index 0e8b19f165..ba412848fb 100644 --- a/src/web/app/desktop/views/components/timeline.vue +++ b/src/web/app/desktop/views/components/timeline.vue @@ -1,7 +1,7 @@ <template> <div class="mk-timeline" ref="root"> <template v-for="(post, i) in _posts"> - <mk-timeline-post :post="post" :key="post.id"/> + <mk-timeline-post :post.sync="post" :key="post.id"/> <p class="date" :key="post.id + '-time'" v-if="i != _posts.length - 1 && _post._date != _posts[i + 1]._date"><span>%fa:angle-up%{{ post._datetext }}</span><span>%fa:angle-down%{{ _posts[i + 1]._datetext }}</span></p> </template> <footer data-yield="footer"> |