aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow/who_to_follow.vue
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2019-02-28 17:53:40 +0000
committerShpuld Shpludson <shp@cock.li>2019-02-28 17:53:40 +0000
commit88c7c8b1140aaa719e9c9314a8ce9fd04ef3baf1 (patch)
treefd18256839bf48bc3c4c0111aa62b8534930e7e8 /src/components/who_to_follow/who_to_follow.vue
parentdc01f90dde55e2babf58878177308c11aa965006 (diff)
parent36460fd3849816af921efdc0b36a6f31f93976ea (diff)
Merge branch '398-rewrite-follow-list' into 'develop'
Split UserCard into FollowCard/FollowRequestCard and Rewrite FollowList using HOCs Closes #398 See merge request pleroma/pleroma-fe!616
Diffstat (limited to 'src/components/who_to_follow/who_to_follow.vue')
-rw-r--r--src/components/who_to_follow/who_to_follow.vue2
1 files changed, 1 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 df2e03c8..1630f5ac 100644
--- a/src/components/who_to_follow/who_to_follow.vue
+++ b/src/components/who_to_follow/who_to_follow.vue
@@ -4,7 +4,7 @@
{{$t('who_to_follow.who_to_follow')}}
</div>
<div class="panel-body">
- <user-card v-for="user in users" :key="user.id" :user="user" :showFollows="true"></user-card>
+ <FollowCard v-for="user in users" :key="user.id" :user="user"/>
</div>
</div>
</template>