This commit is contained in:
taehoon 2019-04-04 00:00:21 -04:00
parent 792ae1697e
commit 32035217b8
4 changed files with 8 additions and 17 deletions

View file

@ -16,14 +16,14 @@
<div :label="$t('user_card.followees')" v-if="followsTabVisible" :disabled="!user.friends_count">
<FriendList :userId="userId">
<template slot="item" scope="p">
<FollowCard :key="p.item.id" :user="p.item" />
<FollowCard :user="p.item" />
</template>
</FriendList>
</div>
<div :label="$t('user_card.followers')" v-if="followersTabVisible" :disabled="!user.followers_count">
<FollowerList :userId="userId">
<template slot="item" scope="p">
<FollowCard :key="p.item.id" :user="p.item" :noFollowsYou="isUs" />
<FollowCard :user="p.item" :noFollowsYou="isUs" />
</template>
</FollowerList>
</div>