mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
Fix order for recently played and recently added
This commit is contained in:
@@ -50,7 +50,7 @@ const HomeRoute = () => {
|
|||||||
{
|
{
|
||||||
limit: itemsPerPage,
|
limit: itemsPerPage,
|
||||||
sortBy: AlbumListSort.RECENTLY_PLAYED,
|
sortBy: AlbumListSort.RECENTLY_PLAYED,
|
||||||
sortOrder: SortOrder.ASC,
|
sortOrder: SortOrder.DESC,
|
||||||
startIndex: pagination.recentlyPlayed * itemsPerPage,
|
startIndex: pagination.recentlyPlayed * itemsPerPage,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -63,7 +63,7 @@ const HomeRoute = () => {
|
|||||||
{
|
{
|
||||||
limit: itemsPerPage,
|
limit: itemsPerPage,
|
||||||
sortBy: AlbumListSort.RECENTLY_ADDED,
|
sortBy: AlbumListSort.RECENTLY_ADDED,
|
||||||
sortOrder: SortOrder.ASC,
|
sortOrder: SortOrder.DESC,
|
||||||
startIndex: pagination.recentlyAdded * itemsPerPage,
|
startIndex: pagination.recentlyAdded * itemsPerPage,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user