aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-02-25 16:30:27 -0500
committertaehoon <th.dev91@gmail.com>2019-02-28 12:41:20 -0500
commit3f9fd07f93b470f59a90abc3ee914d03a11efb87 (patch)
tree9996f154fc60a7f652d7db3b2870ed0ec7c6e653 /src/components/who_to_follow
parentbb1fac4bc202c58064ee94d124967db463b3178e (diff)
Remove non-existing prop binding
Diffstat (limited to 'src/components/who_to_follow')
-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..e148a089 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>
+ <user-card v-for="user in users" :key="user.id" :user="user"></user-card>
</div>
</div>
</template>