fix: ヘッダーメニューのチャンネルからチャンネルを新規作成の遷移先修正 (#16816)

* fix: ヘッダーメニューのチャンネルからチャンネルを新規作成の遷移先修正

* add changelog

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
果物リン 2025-11-20 15:39:50 +09:00 committed by GitHub
parent 7e56fed164
commit e588615ea9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -4,8 +4,10 @@
- -
### Client ### Client
- Enhance: リアクションの受け入れ設定にキャプションを追加 #15921 - Enhance: リアクションの受け入れ設定にキャプションを追加 #15921
- Fix: ページの内容がはみ出ることがある問題を修正 - Fix: ページの内容がはみ出ることがある問題を修正
- Fix: ヘッダーメニューのチャンネルの新規作成の項目でチャンネル作成ページに飛べない問題を修正 #16816
### Server ### Server
- -

View File

@ -163,7 +163,7 @@ async function chooseChannel(ev: MouseEvent): Promise<void> {
type: 'link', type: 'link',
icon: 'ti ti-plus', icon: 'ti ti-plus',
text: i18n.ts.createNew, text: i18n.ts.createNew,
to: '/channels', to: '/channels/new',
}, },
]; ];
os.popupMenu(items.filter(i => i != null), ev.currentTarget ?? ev.target); os.popupMenu(items.filter(i => i != null), ev.currentTarget ?? ev.target);