summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-02-12 11:06:26 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-02-12 11:06:26 +0900
commit56b23a64a3d01b16fe37ead2fd4ee7a4f99c066c (patch)
tree2025f1298a47889ea3d6762d575a06af497f924d /packages/frontend/src
parenttweak (diff)
downloadmisskey-56b23a64a3d01b16fe37ead2fd4ee7a4f99c066c.tar.gz
misskey-56b23a64a3d01b16fe37ead2fd4ee7a4f99c066c.tar.bz2
misskey-56b23a64a3d01b16fe37ead2fd4ee7a4f99c066c.zip
clean up
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/pages/user/home.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/pages/user/home.vue b/packages/frontend/src/pages/user/home.vue
index fab47d09e2..8948e85ea4 100644
--- a/packages/frontend/src/pages/user/home.vue
+++ b/packages/frontend/src/pages/user/home.vue
@@ -75,15 +75,15 @@
</dl>
</div>
<div class="status">
- <MkA v-click-anime :to="userPage(user)" :class="{ active: page === 'index' }">
+ <MkA v-click-anime :to="userPage(user)">
<b>{{ number(user.notesCount) }}</b>
<span>{{ i18n.ts.notes }}</span>
</MkA>
- <MkA v-click-anime :to="userPage(user, 'following')" :class="{ active: page === 'following' }">
+ <MkA v-click-anime :to="userPage(user, 'following')">
<b>{{ number(user.followingCount) }}</b>
<span>{{ i18n.ts.following }}</span>
</MkA>
- <MkA v-click-anime :to="userPage(user, 'followers')" :class="{ active: page === 'followers' }">
+ <MkA v-click-anime :to="userPage(user, 'followers')">
<b>{{ number(user.followersCount) }}</b>
<span>{{ i18n.ts.followers }}</span>
</MkA>