summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorSayamame-beans <61457993+Sayamame-beans@users.noreply.github.com>2025-08-09 14:13:37 +0900
committerGitHub <noreply@github.com>2025-08-09 14:13:37 +0900
commit2931eb0aad7f46eb7b47b4d0a3214c2d534727d5 (patch)
tree53a9b6fbae321cb4adb3c3ccc03bfb3bac6a66d7 /packages
parentfix frontend tests broken with aiscript 1.0.0 (#16377) (diff)
downloadmisskey-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>
Diffstat (limited to 'packages')
-rw-r--r--packages/frontend/src/pages/channel.vue2
1 files changed, 1 insertions, 1 deletions
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,