diff options
| author | fuyu <54523771+mfmfuyu@users.noreply.github.com> | 2020-02-07 00:19:40 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 00:19:40 +0900 |
| commit | 38215f2cf9589375e7845e55ddf3b0a3fcdcdd36 (patch) | |
| tree | a2b74b3c7cefb10bce7e3a61ad6f6b884c8aded7 /src | |
| parent | Clean up (diff) | |
| download | sharkey-38215f2cf9589375e7845e55ddf3b0a3fcdcdd36.tar.gz sharkey-38215f2cf9589375e7845e55ddf3b0a3fcdcdd36.tar.bz2 sharkey-38215f2cf9589375e7845e55ddf3b0a3fcdcdd36.zip | |
Fix wrong url on list page (#5865)
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/pages/my-lists/index.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/my-lists/index.vue b/src/client/pages/my-lists/index.vue index 968864cdb1..505998209e 100644 --- a/src/client/pages/my-lists/index.vue +++ b/src/client/pages/my-lists/index.vue @@ -7,7 +7,7 @@ <mk-pagination :pagination="pagination" #default="{items}" class="lists" ref="list"> <div class="list _panel" v-for="(list, i) in items" :key="list.id"> - <router-link :to="`/lists/${ list.id }`">{{ list.name }}</router-link> + <router-link :to="`/my/lists/${ list.id }`">{{ list.name }}</router-link> </div> </mk-pagination> </div> |