diff options
| author | taehoon <th.dev91@gmail.com> | 2019-07-20 16:54:30 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-07-24 21:02:37 -0400 |
| commit | 0f8ace483649c1da66a1270373a3b95683ff9a0b (patch) | |
| tree | 23e8c7336fbe9f63d7908c6d2b7c0f80ec160bdb /src/components/timeline/timeline.vue | |
| parent | 876c6de8066d9ac708bb0cd8e4d4c5e60f9502a6 (diff) | |
update status eliminating logic
Diffstat (limited to 'src/components/timeline/timeline.vue')
| -rw-r--r-- | src/components/timeline/timeline.vue | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index 4337ac36..0cb4b3ef 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -38,13 +38,15 @@ :show-pinned="true" /> </template> - <conversation - v-for="status in statuses" - :key="status.id" - class="status-fadein" - :statusoid="status" - :collapsable="true" - /> + <template v-for="status in timeline.visibleStatuses"> + <conversation + v-if="!excludedStatusIdsObject[status.id]" + :key="status.id" + class="status-fadein" + :statusoid="status" + :collapsable="true" + /> + </template> </div> </div> <div :class="classes.footer"> |
