mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
fix(mobile): trash sorting order (#13299)
* fix: trash sorting order * updated after comparing with web
This commit is contained in:
parent
e9813315e7
commit
53358c768c
1 changed files with 1 additions and 1 deletions
|
@ -167,6 +167,6 @@ final trashedAssetsProvider = StreamProvider<RenderList>((ref) {
|
||||||
.filter()
|
.filter()
|
||||||
.ownerIdEqualTo(user.isarId)
|
.ownerIdEqualTo(user.isarId)
|
||||||
.isTrashedEqualTo(true)
|
.isTrashedEqualTo(true)
|
||||||
.sortByFileCreatedAt();
|
.sortByFileCreatedAtDesc();
|
||||||
return renderListGeneratorWithGroupBy(query, GroupAssetsBy.none);
|
return renderListGeneratorWithGroupBy(query, GroupAssetsBy.none);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue