diff --git a/components/account/AccountPostsFollowers.vue b/components/account/AccountPostsFollowers.vue index 48371a81..4d775100 100644 --- a/components/account/AccountPostsFollowers.vue +++ b/components/account/AccountPostsFollowers.vue @@ -6,7 +6,8 @@ const props = defineProps<{ }>() const { formatHumanReadableNumber, formatNumber, forSR } = useHumanReadableNumber() -const statusesCount = $computed(() => formatNumber(props.account.statusesCount)) +const statusesCount = $computed(() => formatHumanReadableNumber(props.account.statusesCount)) +const statusesCountSR = $computed(() => forSR(props.account.statusesCount)) const followingCount = $computed(() => formatHumanReadableNumber(props.account.followingCount)) const followingCountSR = $computed(() => forSR(props.account.followingCount)) const followersCount = $computed(() => formatHumanReadableNumber(props.account.followersCount)) @@ -15,31 +16,48 @@ const followersCountSR = $computed(() => forSR(props.account.followersCount))