diff options
| author | shpuld <shp@cock.li> | 2019-02-03 11:58:49 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-02-03 11:58:49 +0200 |
| commit | 18ae7bd5f366598d46a65e9da1312c98f7bb00e7 (patch) | |
| tree | b876f85bc711b21b2d77d8db49454755f1f1fbb0 /src/components/user_profile/user_profile.vue | |
| parent | b614cb94e502f3491afd07e5bcb785ad122cf100 (diff) | |
Combine friends/followers
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
| -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 c431c729..6d5b00d1 100644 --- a/src/components/user_profile/user_profile.vue +++ b/src/components/user_profile/user_profile.vue @@ -16,13 +16,13 @@ :user-id="fetchBy" /> <div :label="$t('user_card.followees')"> - <FriendsList v-if="user.friends_count > 0" :userId="userId" /> + <FollowList v-if="user.friends_count > 0" :userId="userId" :showFollowers="false" /> <div class="userlist-placeholder" v-else> <i class="icon-spin3 animate-spin"></i> </div> </div> <div :label="$t('user_card.followers')"> - <FollowersList v-if="user.followers_count > 0" :userId="userId" /> + <FollowList v-if="user.followers_count > 0" :userId="userId" :showFollowers="true" /> <div class="userlist-placeholder" v-else> <i class="icon-spin3 animate-spin"></i> </div> |
