From 3bf505b566e8cea1ea6d103895c3d8ab8cd88e9f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 8 Dec 2014 15:16:15 +0100 Subject: [PATCH] Fix deleting selected files in the trashbin --- apps/files_trashbin/js/filelist.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js index 826c1bd64d5..e8e53105c0a 100644 --- a/apps/files_trashbin/js/filelist.js +++ b/apps/files_trashbin/js/filelist.js @@ -255,6 +255,10 @@ updateStorageStatistics: function() { // no op because the trashbin doesn't have // storage info like free space / used space + }, + + isSelectedDeletable: function() { + return true; } }); -- 2.39.5