Sort outgoing colleciton by updation time
This commit is contained in:
parent
4bae389aeb
commit
b6679b9579
1 changed files with 3 additions and 0 deletions
|
@ -359,6 +359,9 @@ class CollectionsService {
|
|||
incoming.sort((first, second) {
|
||||
return second.updationTime.compareTo(first.updationTime);
|
||||
});
|
||||
outgoing.sort((first, second) {
|
||||
return second.updationTime.compareTo(first.updationTime);
|
||||
});
|
||||
return SharedCollections(outgoing, incoming, quickLinks);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue