Merge pull request #8820 from nextcloud/mtime-sort
Sorts filepicker files by modified date
This commit is contained in:
commit
d3f2b6aef4
1 changed files with 1 additions and 1 deletions
|
@ -847,7 +847,7 @@ var OCdialogs = {
|
|||
} else if(a.type !== 'dir' && b.type === 'dir') {
|
||||
return 1;
|
||||
} else {
|
||||
return 0;
|
||||
return -(a.mtime - b.mtime);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue