fix(frontend): ノートの詳細ページのユーザーもしくはチャンネルを遡るとタイムラインの並び順番が逆になる問題を修正 (MisskeyIO#529)
This commit is contained in:
parent
0c3de462d9
commit
27c897d19f
|
@ -85,7 +85,6 @@ const prevUserPagination: Paging = {
|
|||
};
|
||||
|
||||
const nextUserPagination: Paging = {
|
||||
reversed: true,
|
||||
endpoint: 'users/notes',
|
||||
limit: 10,
|
||||
params: computed(() => note.value ? ({
|
||||
|
@ -104,7 +103,6 @@ const prevChannelPagination: Paging = {
|
|||
};
|
||||
|
||||
const nextChannelPagination: Paging = {
|
||||
reversed: true,
|
||||
endpoint: 'channels/timeline',
|
||||
limit: 10,
|
||||
params: computed(() => note.value ? ({
|
||||
|
|
Loading…
Reference in New Issue