fix(frontend): ノートの詳細ページのユーザーもしくはチャンネルを遡るとタイムラインの並び順番が逆になる問題を修正 (MisskeyIO#529)

This commit is contained in:
まっちゃとーにゅ 2024-03-17 11:21:48 +09:00 committed by GitHub
parent 0c3de462d9
commit 27c897d19f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -85,7 +85,6 @@ const prevUserPagination: Paging = {
}; };
const nextUserPagination: Paging = { const nextUserPagination: Paging = {
reversed: true,
endpoint: 'users/notes', endpoint: 'users/notes',
limit: 10, limit: 10,
params: computed(() => note.value ? ({ params: computed(() => note.value ? ({
@ -104,7 +103,6 @@ const prevChannelPagination: Paging = {
}; };
const nextChannelPagination: Paging = { const nextChannelPagination: Paging = {
reversed: true,
endpoint: 'channels/timeline', endpoint: 'channels/timeline',
limit: 10, limit: 10,
params: computed(() => note.value ? ({ params: computed(() => note.value ? ({