diff options
| author | 果物リン <nassii74@gmail.com> | 2025-11-20 15:39:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-20 15:39:50 +0900 |
| commit | e588615ea976fa88fde1248bce17c8557245a79c (patch) | |
| tree | 50a85b5bc1cb489d19ef4e8c7ba0e24f936831d2 | |
| parent | fix(frontend): ページのコンテンツがはみ出る問題を修正 (#16... (diff) | |
| download | misskey-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>
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/timeline.vue | 2 |
2 files changed, 3 insertions, 1 deletions
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<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); |