1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 07:16:14 +02:00

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
2 changed files with 3 additions and 1 deletions

View File

@@ -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);