diff options
| author | Sayamame-beans <61457993+Sayamame-beans@users.noreply.github.com> | 2025-08-09 14:13:37 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-09 14:13:37 +0900 |
| commit | 2931eb0aad7f46eb7b47b4d0a3214c2d534727d5 (patch) | |
| tree | 53a9b6fbae321cb4adb3c3ccc03bfb3bac6a66d7 | |
| parent | fix frontend tests broken with aiscript 1.0.0 (#16377) (diff) | |
| download | misskey-2931eb0aad7f46eb7b47b4d0a3214c2d534727d5.tar.gz misskey-2931eb0aad7f46eb7b47b4d0a3214c2d534727d5.tar.bz2 misskey-2931eb0aad7f46eb7b47b4d0a3214c2d534727d5.zip | |
Fix: チャンネルのハイライトページにノートが表示されない問題を修正 (#16364)
* fix(frontend): unable to see channel's featured notes
* docs(changelog): update changelog
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | packages/frontend/src/pages/channel.vue | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 94043c4c24..231e858e87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ - Fix: 一部の設定検索結果が存在しないパスになる問題を修正 (Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/1171) - Fix: テーマエディタが動作しない問題を修正 +- Fix: チャンネルのハイライトページにノートが表示されない問題を修正 - Fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題を修正 ### Server diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue index 7ce42ea0cb..0437191695 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -112,7 +112,7 @@ const favorited = ref(false); const searchQuery = ref(''); const searchPaginator = shallowRef(); const searchKey = ref(''); -const featuredPaginator = markRaw(new Paginator('channels/featured', { +const featuredPaginator = markRaw(new Paginator('notes/featured', { limit: 10, computedParams: computed(() => ({ channelId: props.channelId, |