mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Add comments for prevents the selection of encrypted folders
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
This commit is contained in:
parent
64f409e8ab
commit
23f968400c
1 changed files with 1 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue