diff --git a/src/components/dialogs/UserDialog/UserDialog.vue b/src/components/dialogs/UserDialog/UserDialog.vue index dfb31a3f..4de55a0f 100644 --- a/src/components/dialogs/UserDialog/UserDialog.vue +++ b/src/components/dialogs/UserDialog/UserDialog.vue @@ -516,7 +516,7 @@
diff --git a/src/stores/user.js b/src/stores/user.js index 4c9f338d..71ca8fdc 100644 --- a/src/stores/user.js +++ b/src/stores/user.js @@ -961,18 +961,14 @@ export const useUserStore = defineStore('User', () => { D.isShowAvatar = true; } }); - if (D.isFriend) { - userRequest - .getMutualCounts({ userId }) - .then((args) => { - if (args.params.userId === D.id) { - D.mutualFriendCount = - args.json.friends; - D.mutualGroupCount = - args.json.groups; - } - }); - } + userRequest + .getMutualCounts({ userId }) + .then((args) => { + if (args.params.userId === D.id) { + D.mutualFriendCount = args.json.friends; + D.mutualGroupCount = args.json.groups; + } + }); } else { D.previousDisplayNames = currentUser.value.pastDisplayNames; diff --git a/src/views/FriendsLocations/FriendsLocations.vue b/src/views/FriendsLocations/FriendsLocations.vue index b4a79300..9d5418c8 100644 --- a/src/views/FriendsLocations/FriendsLocations.vue +++ b/src/views/FriendsLocations/FriendsLocations.vue @@ -9,7 +9,7 @@ :prefix-icon="Search" clearable placeholder="Search Friend"> - +