diff --git a/webapp/components/features/ProfileList/FollowList.vue b/webapp/components/features/ProfileList/FollowList.vue index 635eccd5b..366c01be5 100644 --- a/webapp/components/features/ProfileList/FollowList.vue +++ b/webapp/components/features/ProfileList/FollowList.vue @@ -3,10 +3,10 @@ :uniqueName="`${type}Filter`" :title="$filters.truncate(userName, 15) + ' ' + $t(`profile.network.${type}`)" :titleNobody="$filters.truncate(userName, 15) + ' ' + $t(`profile.network.${type}Nobody`)" - :allConnectionsCount="allConnectionsCount" - :connections="connections" + :allProfilesCount="allConnectionsCount" + :profiles="connections" :loading="loading" - @fetchAllConnections="$emit('fetchAllConnections', type)" + @fetchAllProfiles="$emit('fetchAllConnections', type)" /> diff --git a/webapp/components/features/ProfileList/ProfileList.vue b/webapp/components/features/ProfileList/ProfileList.vue index c619da8fc..44de2eab5 100644 --- a/webapp/components/features/ProfileList/ProfileList.vue +++ b/webapp/components/features/ProfileList/ProfileList.vue @@ -1,6 +1,6 @@