diff options
author | Robin Appelman <robin@icewind.nl> | 2014-12-08 16:30:53 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2014-12-08 16:30:53 +0100 |
commit | baf5c44bec28a7ef36abca25fd0180b95f0bd832 (patch) | |
tree | 5e0da3c2841cb0ce069a3abbb9661463969e9251 /apps | |
parent | 1362c0b67a42873e57dc69437a39c4473caef1a5 (diff) | |
parent | b2d4e53f668eac6c8b792cfa255967235cbcc6bd (diff) | |
download | nextcloud-server-baf5c44bec28a7ef36abca25fd0180b95f0bd832.tar.gz nextcloud-server-baf5c44bec28a7ef36abca25fd0180b95f0bd832.zip |
Merge pull request #12696 from owncloud/trashbin-selected-delete
Fix deleting selected files in the trashbin
Diffstat (limited to 'apps')
-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; } }); |