From e588615ea976fa88fde1248bce17c8557245a79c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=9C=E7=89=A9=E3=83=AA=E3=83=B3?= Date: Thu, 20 Nov 2025 15:39:50 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=83=98=E3=83=83=E3=83=80=E3=83=BC?= =?UTF-8?q?=E3=83=A1=E3=83=8B=E3=83=A5=E3=83=BC=E3=81=AE=E3=83=81=E3=83=A3?= =?UTF-8?q?=E3=83=B3=E3=83=8D=E3=83=AB=E3=81=8B=E3=82=89=E3=83=81=E3=83=A3?= =?UTF-8?q?=E3=83=B3=E3=83=8D=E3=83=AB=E3=82=92=E6=96=B0=E8=A6=8F=E4=BD=9C?= =?UTF-8?q?=E6=88=90=E3=81=AE=E9=81=B7=E7=A7=BB=E5=85=88=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=20(#16816)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: ヘッダーメニューのチャンネルからチャンネルを新規作成の遷移先修正 * add changelog --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> --- CHANGELOG.md | 2 ++ packages/frontend/src/pages/timeline.vue | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 715b6bf93f..3cd1de4fde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ - ### Client + - Enhance: リアクションの受け入れ設定にキャプションを追加 #15921 - Fix: ページの内容がはみ出ることがある問題を修正 +- Fix: ヘッダーメニューのチャンネルの新規作成の項目でチャンネル作成ページに飛べない問題を修正 #16816 ### Server - 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 { 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);