summaryrefslogtreecommitdiff
path: root/packages/client/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-06-12 19:54:50 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-06-12 19:54:50 +0900
commit3c67a5c7d89dd68c854b321bdf1d176e28010787 (patch)
treee438f41db286c9814b74b459417dd2e26180279d /packages/client/src
parentUpdate CHANGELOG.md (diff)
parentNew translations ja-JP.yml (Korean) (#8812) (diff)
downloadmisskey-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.ts2
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 },