diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-04 00:00:21 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-04-17 11:32:49 -0400 |
| commit | 32035217b8e04b0f178409f0f1f49d54296ce80c (patch) | |
| tree | 0d9f3ad7d51d8ab060e9457cac9e16108d57a20c /src/components/user_profile | |
| parent | 792ae1697e1a3710a6f12eb70a3c81b0318f9515 (diff) | |
clean up
Diffstat (limited to 'src/components/user_profile')
| -rw-r--r-- | src/components/user_profile/user_profile.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue index 39f3c381..8d78d2d2 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -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> |
