diff options
| author | taehoon <th.dev91@gmail.com> | 2019-07-19 22:46:11 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-07-24 21:02:37 -0400 |
| commit | d7dc07066734fc69ef01022f92f57ededbbd0777 (patch) | |
| tree | ccb3d3a5fd26c441571c9c6ee5223ffb840cb389 /src/components/timeline/timeline.vue | |
| parent | ae829e8df13f2b9c18b3e5488ebe265e2669e759 (diff) | |
put two loops in one parent
Diffstat (limited to 'src/components/timeline/timeline.vue')
| -rw-r--r-- | src/components/timeline/timeline.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index 9990f20a..4337ac36 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -31,15 +31,13 @@ <template v-for="statusId in pinnedStatusIds"> <conversation v-if="timeline.statusesObject[statusId]" - :key="statusId" + :key="statusId + '-pinned'" class="status-fadein" :statusoid="timeline.statusesObject[statusId]" :collapsable="true" :show-pinned="true" /> </template> - </div> - <div class="timeline"> <conversation v-for="status in statuses" :key="status.id" |
