diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-12-08 15:16:15 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-12-08 15:16:15 +0100 |
commit | b2d4e53f668eac6c8b792cfa255967235cbcc6bd (patch) | |
tree | 694a8159db5d16336e70414b47fb977ba5ca4db1 /apps/files_trashbin/js | |
parent | e6908f8b890414451dfc32af4d76562016d75d0f (diff) | |
download | nextcloud-server-b2d4e53f668eac6c8b792cfa255967235cbcc6bd.tar.gz nextcloud-server-b2d4e53f668eac6c8b792cfa255967235cbcc6bd.zip |
Fix deleting selected files in the trashbin
Diffstat (limited to 'apps/files_trashbin/js')
-rw-r--r-- | apps/files_trashbin/js/filelist.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js index a3631a2d0fe..12f3f1982f6 100644 --- a/apps/files_trashbin/js/filelist.js +++ b/apps/files_trashbin/js/filelist.js @@ -268,6 +268,10 @@ updateStorageStatistics: function() { // no op because the trashbin doesn't have // storage info like free space / used space + }, + + isSelectedDeletable: function() { + return true; } }); |