diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-16 16:43:17 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-16 16:43:17 +0900 |
| commit | 40aba47a47ff5494964e64165a835066b1f00671 (patch) | |
| tree | 87811db1bf3a7893e87c8a40a900668942da69cf /src/client | |
| parent | Use home icon (diff) | |
| download | misskey-40aba47a47ff5494964e64165a835066b1f00671.tar.gz misskey-40aba47a47ff5494964e64165a835066b1f00671.tar.bz2 misskey-40aba47a47ff5494964e64165a835066b1f00671.zip | |
Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/mobile/script.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index ad37ba70ab..dbdc0f630c 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -135,8 +135,7 @@ init((launch) => { { path: '/explore', name: 'explore', component: () => import('./views/pages/explore.vue').then(m => m.default) }, { path: '/share', component: MkShare }, { path: '/games/reversi/:game?', name: 'reversi', component: MkReversi }, - { path: '/@:user', component: () => import('./views/pages/user/index.vue').then(m => m.default), children: [ - { path: '', name: 'user', component: () => import('./views/pages/user/home.vue').then(m => m.default) }, + { path: '/@:user', name: 'user', component: () => import('./views/pages/user/index.vue').then(m => m.default), children: [ { path: 'following', component: () => import('../common/views/pages/following.vue').then(m => m.default) }, { path: 'followers', component: () => import('../common/views/pages/followers.vue').then(m => m.default) }, ]}, |