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 2addd48 commit ff8af85Copy full SHA for ff8af85
apps/files_sharing/src/views/SharingDetailsTab.vue
@@ -567,7 +567,10 @@ export default {
567
return (this.fileInfo.canDownload() || this.canDownload)
568
},
569
canRemoveReadPermission() {
570
- return this.allowsFileDrop && this.share.type === this.SHARE_TYPES.SHARE_TYPE_LINK
+ return this.allowsFileDrop && (
571
+ this.share.type === this.SHARE_TYPES.SHARE_TYPE_LINK
572
+ || this.share.type === this.SHARE_TYPES.SHARE_TYPE_EMAIL
573
+ )
574
575
// if newPassword exists, but is empty, it means
576
// the user deleted the original password
0 commit comments