From ca8d785d9eff0938560ddeb0295a0abd18cfdc1b Mon Sep 17 00:00:00 2001 From: Kingsley Yung <11942650+kkoyung@users.noreply.github.com> Date: Mon, 17 Apr 2023 03:47:20 +0800 Subject: [PATCH] feat: allow user to view follow list in "Hide following/follower count" mode (#1901) --- components/account/AccountHoverCard.vue | 2 +- components/account/AccountPostsFollowers.vue | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/components/account/AccountHoverCard.vue b/components/account/AccountHoverCard.vue index b7168ec3..4866b718 100644 --- a/components/account/AccountHoverCard.vue +++ b/components/account/AccountHoverCard.vue @@ -19,6 +19,6 @@ const relationship = $(useRelationship(account))
- + diff --git a/components/account/AccountPostsFollowers.vue b/components/account/AccountPostsFollowers.vue index e2527c99..4c877f8a 100644 --- a/components/account/AccountPostsFollowers.vue +++ b/components/account/AccountPostsFollowers.vue @@ -3,6 +3,7 @@ import type { mastodon } from 'masto' defineProps<{ account: mastodon.v1.Account + isHoverCard?: boolean }>() const userSettings = useUserSettings() @@ -26,33 +27,37 @@ const userSettings = useUserSettings()