fix unable to change owner to someone else

This commit is contained in:
shamoon 2023-03-03 15:52:28 -08:00
parent 6a34a35585
commit e373ca7bdc

View File

@ -676,8 +676,8 @@ export class DocumentDetailComponent
get userIsOwner(): boolean { get userIsOwner(): boolean {
let doc: PaperlessDocument = Object.assign({}, this.document) let doc: PaperlessDocument = Object.assign({}, this.document)
// dont disable while editing // dont disable while editing
if (this.document && this.store?.value.owner) { if (this.document && this.store?.value.permissions_form?.owner) {
doc.owner = this.store?.value.owner doc.owner = this.store?.value.permissions_form?.owner
} }
return !this.document || this.permissionsService.currentUserOwnsObject(doc) return !this.document || this.permissionsService.currentUserOwnsObject(doc)
} }
@ -685,8 +685,8 @@ export class DocumentDetailComponent
get userCanEdit(): boolean { get userCanEdit(): boolean {
let doc: PaperlessDocument = Object.assign({}, this.document) let doc: PaperlessDocument = Object.assign({}, this.document)
// dont disable while editing // dont disable while editing
if (this.document && this.store?.value.owner) { if (this.document && this.store?.value.permissions_form?.owner) {
doc.owner = this.store?.value.owner doc.owner = this.store?.value.permissions_form?.owner
} }
return ( return (
!this.document || !this.document ||