From 9e544b0e64ed65959fb198ea6702327af2f9c3f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Mon, 12 Sep 2022 08:35:52 +0200 Subject: [PATCH] Rename props and classes in 'ProfileList' --- .../features/ProfileList/FollowList.vue | 6 ++--- .../features/ProfileList/ProfileList.vue | 24 +++++++++---------- 2 files changed, 15 insertions(+), 15 deletions(-) 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 @@