aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow/who_to_follow.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/who_to_follow/who_to_follow.vue')
-rw-r--r--src/components/who_to_follow/who_to_follow.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/who_to_follow/who_to_follow.vue b/src/components/who_to_follow/who_to_follow.vue
index 1630f5ac..4812dd81 100644
--- a/src/components/who_to_follow/who_to_follow.vue
+++ b/src/components/who_to_follow/who_to_follow.vue
@@ -4,7 +4,11 @@
{{$t('who_to_follow.who_to_follow')}}
</div>
<div class="panel-body">
- <FollowCard v-for="user in users" :key="user.id" :user="user"/>
+ <List :items="users">
+ <template slot="item" scope="p">
+ <FollowCard :user="p.item" />
+ </template>
+ </List>
</div>
</div>
</template>