1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 19:45:51 +02:00

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>
This commit is contained in:
Sayamame-beans
2025-08-09 14:13:37 +09:00
committed by GitHub
parent 103d5a4b44
commit 2931eb0aad
2 changed files with 2 additions and 1 deletions

View File

@@ -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,