1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 22:51:59 +00:00

fix(mobile): trash sorting order (#13299)

* fix: trash sorting order

* updated after comparing with web
This commit is contained in:
Yashraj Jain 2024-10-10 14:22:12 +05:30 committed by GitHub
parent e9813315e7
commit 53358c768c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -167,6 +167,6 @@ final trashedAssetsProvider = StreamProvider<RenderList>((ref) {
.filter()
.ownerIdEqualTo(user.isarId)
.isTrashedEqualTo(true)
.sortByFileCreatedAt();
.sortByFileCreatedAtDesc();
return renderListGeneratorWithGroupBy(query, GroupAssetsBy.none);
});