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 441855c commit 7364202Copy full SHA for 7364202
apps/files_sharing/src/views/SharingDetailsTab.vue
@@ -545,7 +545,10 @@ export default {
545
return (this.fileInfo.canDownload() || this.canDownload)
546
},
547
canRemoveReadPermission() {
548
- return this.allowsFileDrop && this.share.type === this.SHARE_TYPES.SHARE_TYPE_LINK
+ return this.allowsFileDrop && (
549
+ this.share.type === this.SHARE_TYPES.SHARE_TYPE_LINK
550
+ || this.share.type === this.SHARE_TYPES.SHARE_TYPE_EMAIL
551
+ )
552
553
// if newPassword exists, but is empty, it means
554
// the user deleted the original password
0 commit comments