diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-12 19:54:50 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-06-12 19:54:50 +0900 |
| commit | 3c67a5c7d89dd68c854b321bdf1d176e28010787 (patch) | |
| tree | e438f41db286c9814b74b459417dd2e26180279d /packages/client/src | |
| parent | Update CHANGELOG.md (diff) | |
| parent | New translations ja-JP.yml (Korean) (#8812) (diff) | |
| download | misskey-3c67a5c7d89dd68c854b321bdf1d176e28010787.tar.gz misskey-3c67a5c7d89dd68c854b321bdf1d176e28010787.tar.bz2 misskey-3c67a5c7d89dd68c854b321bdf1d176e28010787.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/router.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index db39dd741c..96c793166c 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -41,7 +41,7 @@ const defaultRoutes = [ { path: '/gallery', component: page(() => import('./pages/gallery/index.vue')) }, { path: '/gallery/new', component: page(() => import('./pages/gallery/edit.vue')) }, { path: '/gallery/:postId/edit', component: page(() => import('./pages/gallery/edit.vue')), props: route => ({ postId: route.params.postId }) }, - { path: '/gallery/:postId', component: page(() => import('./pages/gallery/edit.vue')), props: route => ({ postId: route.params.postId }) }, + { path: '/gallery/:postId', component: page(() => import('./pages/gallery/post.vue')), props: route => ({ postId: route.params.postId }) }, { path: '/channels', component: page('channels') }, { path: '/channels/new', component: page('channel-editor') }, { path: '/channels/:channelId/edit', component: page('channel-editor'), props: true }, |