summaryrefslogtreecommitdiff
path: root/src/client/pages/my-groups
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-10-25 01:21:41 +0900
committerGitHub <noreply@github.com>2020-10-25 01:21:41 +0900
commit254cfaea284d12f188e28f56a0cec863e3177a49 (patch)
tree5ba89f9316cf54724af75ee919ae7339edc5af0e /src/client/pages/my-groups
parentUpdate dependencies :rocket: (diff)
downloadmisskey-254cfaea284d12f188e28f56a0cec863e3177a49.tar.gz
misskey-254cfaea284d12f188e28f56a0cec863e3177a49.tar.bz2
misskey-254cfaea284d12f188e28f56a0cec863e3177a49.zip
自前ルーティング (#6759)
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
Diffstat (limited to 'src/client/pages/my-groups')
-rw-r--r--src/client/pages/my-groups/index.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/my-groups/index.vue b/src/client/pages/my-groups/index.vue
index f05226faaf..e384dfc363 100644
--- a/src/client/pages/my-groups/index.vue
+++ b/src/client/pages/my-groups/index.vue
@@ -10,7 +10,7 @@
<MkPagination :pagination="ownedPagination" #default="{items}" ref="owned">
<div class="_card" v-for="group in items" :key="group.id">
- <div class="_title"><router-link :to="`/my/groups/${ group.id }`" class="_link">{{ group.name }}</router-link></div>
+ <div class="_title"><MkA :to="`/my/groups/${ group.id }`" class="_link">{{ group.name }}</MkA></div>
<div class="_content"><MkAvatars :user-ids="group.userIds"/></div>
</div>
</MkPagination>