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:
parent
103d5a4b44
commit
2931eb0aad
|
@ -38,6 +38,7 @@
|
||||||
- Fix: 一部の設定検索結果が存在しないパスになる問題を修正
|
- Fix: 一部の設定検索結果が存在しないパスになる問題を修正
|
||||||
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/1171)
|
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/1171)
|
||||||
- Fix: テーマエディタが動作しない問題を修正
|
- Fix: テーマエディタが動作しない問題を修正
|
||||||
|
- Fix: チャンネルのハイライトページにノートが表示されない問題を修正
|
||||||
- Fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題を修正
|
- Fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
|
|
|
@ -112,7 +112,7 @@ const favorited = ref(false);
|
||||||
const searchQuery = ref('');
|
const searchQuery = ref('');
|
||||||
const searchPaginator = shallowRef();
|
const searchPaginator = shallowRef();
|
||||||
const searchKey = ref('');
|
const searchKey = ref('');
|
||||||
const featuredPaginator = markRaw(new Paginator('channels/featured', {
|
const featuredPaginator = markRaw(new Paginator('notes/featured', {
|
||||||
limit: 10,
|
limit: 10,
|
||||||
computedParams: computed(() => ({
|
computedParams: computed(() => ({
|
||||||
channelId: props.channelId,
|
channelId: props.channelId,
|
||||||
|
|
Loading…
Reference in New Issue