summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
author果物リン <nassii74@gmail.com>2025-11-20 15:39:50 +0900
committerGitHub <noreply@github.com>2025-11-20 15:39:50 +0900
commite588615ea976fa88fde1248bce17c8557245a79c (patch)
tree50a85b5bc1cb489d19ef4e8c7ba0e24f936831d2 /packages/frontend/src
parentfix(frontend): ページのコンテンツがはみ出る問題を修正 (#16... (diff)
downloadmisskey-e588615ea976fa88fde1248bce17c8557245a79c.tar.gz
misskey-e588615ea976fa88fde1248bce17c8557245a79c.tar.bz2
misskey-e588615ea976fa88fde1248bce17c8557245a79c.zip
fix: ヘッダーメニューのチャンネルからチャンネルを新規作成の遷移先修正 (#16816)
* fix: ヘッダーメニューのチャンネルからチャンネルを新規作成の遷移先修正 * add changelog --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/pages/timeline.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue
index f72549df07..89d0991bc0 100644
--- a/packages/frontend/src/pages/timeline.vue
+++ b/packages/frontend/src/pages/timeline.vue
@@ -163,7 +163,7 @@ async function chooseChannel(ev: MouseEvent): Promise<void> {
type: 'link',
icon: 'ti ti-plus',
text: i18n.ts.createNew,
- to: '/channels',
+ to: '/channels/new',
},
];
os.popupMenu(items.filter(i => i != null), ev.currentTarget ?? ev.target);