diff options
author | kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com> | 2022-11-15 17:58:57 +0530 |
---|---|---|
committer | kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com> | 2022-11-22 15:56:09 +0530 |
commit | 23f968400cdabc0e4c2ba5bc268d9b32ecca0036 (patch) | |
tree | 2880dbdde434fe03a483f71cc4386a3f0ab4a585 /apps | |
parent | 64f409e8abaa8522fff49ecc854aec5721e41aed (diff) | |
download | nextcloud-server-23f968400cdabc0e4c2ba5bc268d9b32ecca0036.tar.gz nextcloud-server-23f968400cdabc0e4c2ba5bc268d9b32ecca0036.zip |
Add comments for prevents the selection of encrypted folders
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filelist.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 46b63140b27..75d7603022b 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -976,6 +976,7 @@ // Select only visible checkboxes to filter out unmatched file in search this.$fileList.find('td.selection > .selectCheckBox:visible').prop('checked', checked) .closest('tr').toggleClass('selected', checked); + //For prevents the selection of encrypted folders when clicking on the "Select all" checkbox this.$fileList.find('tr[data-e2eencrypted="true"]').find('td.selection > .selectCheckBox:visible').prop('checked', false).closest('tr').toggleClass('selected', false); if (checked) { |