Remove non-existing prop binding

This commit is contained in:
taehoon 2019-02-25 16:30:27 -05:00
parent bb1fac4bc2
commit 3f9fd07f93
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
{{$t('nav.friend_requests')}} {{$t('nav.friend_requests')}}
</div> </div>
<div class="panel-body"> <div class="panel-body">
<user-card v-for="request in requests" :key="request.id" :user="request" :showFollows="false" :showApproval="true"></user-card> <user-card v-for="request in requests" :key="request.id" :user="request" :showApproval="true"></user-card>
</div> </div>
</div> </div>
</template> </template>

View file

@ -13,7 +13,7 @@
<i class="icon-spin3 animate-spin"/> <i class="icon-spin3 animate-spin"/>
</div> </div>
<div v-else class="panel-body"> <div v-else 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>
</div> </div>
</template> </template>

View file

@ -4,7 +4,7 @@
{{$t('who_to_follow.who_to_follow')}} {{$t('who_to_follow.who_to_follow')}}
</div> </div>
<div class="panel-body"> <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>
</div> </div>
</template> </template>