diff options
| author | Roger Braun <roger@rogerbraun.net> | 2016-12-03 12:43:21 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2016-12-03 12:43:21 +0100 |
| commit | 58ac8f51a219681e237494b8a730048f2eafbe58 (patch) | |
| tree | 4ba4b5c3ed9dc719172b0e7e4f0b80f5a3a5ab45 /src/components/mentions/mentions.vue | |
| parent | df51d088142476c71272e175f4b486b97fd33b91 (diff) | |
Treat mentions more like a timeline.
Diffstat (limited to 'src/components/mentions/mentions.vue')
| -rw-r--r-- | src/components/mentions/mentions.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/mentions/mentions.vue b/src/components/mentions/mentions.vue index a760719c..6287ca11 100644 --- a/src/components/mentions/mentions.vue +++ b/src/components/mentions/mentions.vue @@ -2,9 +2,7 @@ <div class="timeline panel panel-default"> <div class="panel-heading">Mentions</div> <div class="panel-body"> - <div class="timeline"> - <status v-for="status in mentions" :key="status.id" v-bind:statusoid="status"></status> - </div> + <Timeline v-bind:timeline="timeline" v-bind:timeline-name="'mentions'"/> </div> </div> </template> |
