We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe6b86 commit fcc00aeCopy full SHA for fcc00ae
apps/files/src/actions/moveOrCopyAction.ts
@@ -222,8 +222,7 @@ async function openFilePickerForAction(
222
return !fileIDs.includes(n.fileid)
223
})
224
.setFilter((n: Node) => {
225
- // We only want to show folders in the file picker
226
- // We don't want to show encrypted folders in the file picker
+ // Show only non-encrypted directories in the file picker
227
return !(n.attributes?.['type'] !== "directory" || n.attributes?.['is-encrypted'] === 1)
228
229
.setCanPick((n) => {
0 commit comments