fix(i18n): fix follower label

This commit is contained in:
三咲智子 2022-11-28 20:38:51 +08:00
parent 5560fe66cc
commit 16632445f2
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -24,7 +24,7 @@ defineProps<{
</NuxtLink>
<NuxtLink :to="`${getAccountPath(account)}/followers`" text-secondary exact-active-class="text-primary">
<template #default="{ isExactActive }">
<i18n-t keypath="account.following">
<i18n-t keypath="account.followers">
<span font-bold :class="isExactActive ? 'text-primary' : 'text-base'">{{ humanReadableNumber(account.followersCount) }}</span>
</i18n-t>
</template>