Merge pull request #23286 from nextcloud/design/deleted-sorting
Sort deleted files by most recently deleted first
This commit is contained in:
commit
0c67de3109
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -71,7 +71,9 @@
|
|||
var result = OCA.Files.FileList.prototype.initialize.apply(this, arguments)
|
||||
this.$el.find('.undelete').click('click', _.bind(this._onClickRestoreSelected, this))
|
||||
|
||||
this.setSort('mtime', 'desc')
|
||||
// Sort by most recently deleted first
|
||||
this.setSort('mtime', 'asc')
|
||||
|
||||
/**
|
||||
* Override crumb making to add "Deleted Files" entry
|
||||
* and convert files with ".d" extensions to a more
|
||||
|
|
|
@ -129,7 +129,7 @@ describe('OCA.Trashbin.FileList tests', function () {
|
|||
describe('Initialization', function () {
|
||||
it('Sorts by mtime by default', function () {
|
||||
expect(fileList._sort).toEqual('mtime');
|
||||
expect(fileList._sortDirection).toEqual('desc');
|
||||
expect(fileList._sortDirection).toEqual('asc');
|
||||
});
|
||||
it('Always returns read and delete permission', function () {
|
||||
expect(fileList.getDirectoryPermissions()).toEqual(OC.PERMISSION_READ | OC.PERMISSION_DELETE);
|
||||
|
|
Loading…
Reference in New Issue