diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-10-25 01:21:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-25 01:21:41 +0900 |
| commit | 254cfaea284d12f188e28f56a0cec863e3177a49 (patch) | |
| tree | 5ba89f9316cf54724af75ee919ae7339edc5af0e /src/client/pages/my-groups | |
| parent | Update dependencies :rocket: (diff) | |
| download | misskey-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.vue | 2 |
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> |