diff options
| author | 1Step621 <86859447+1STEP621@users.noreply.github.com> | 2024-03-30 20:30:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-30 20:30:22 +0900 |
| commit | d4ca973e3408a7d28788efe57bcd882c0ce9eedc (patch) | |
| tree | 6350043f4d6e7d94ed6e164096319c70236e88c9 /packages/frontend/src/router | |
| parent | fix/enhance(frontend): 映像・音声周りの改修 (#13206) (diff) | |
| download | sharkey-d4ca973e3408a7d28788efe57bcd882c0ce9eedc.tar.gz sharkey-d4ca973e3408a7d28788efe57bcd882c0ce9eedc.tar.bz2 sharkey-d4ca973e3408a7d28788efe57bcd882c0ce9eedc.zip | |
Enhance(frontend): もっと!ボタンでリアクション一覧が開けるように (#12935)
* もっと!ボタンでリアクション一覧が開けるように
* update CHANGELOG.md && デバッグ用に最大リアクション表示数を1にしてたのを一応戻した
* fix
* デザイン調整
* maxNumberもどす
* fix CHANGELOG
* fix
* move changelog
* :art:
---------
Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/router')
| -rw-r--r-- | packages/frontend/src/router/definition.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/router/definition.ts b/packages/frontend/src/router/definition.ts index eaeeafd499..c9f03b738f 100644 --- a/packages/frontend/src/router/definition.ts +++ b/packages/frontend/src/router/definition.ts @@ -35,7 +35,7 @@ const routes: RouteDef[] = [{ component: page(() => import('@/pages/user/index.vue')), }, { name: 'note', - path: '/notes/:noteId', + path: '/notes/:noteId/:initialTab?', component: page(() => import('@/pages/note.vue')), }, { name: 'list', |