Merge pull request #3243 from paperless-ngx/fix/issue-3229

This commit is contained in:
shamoon 2023-04-29 12:37:12 -07:00 committed by GitHub
commit 0284100c2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -236,10 +236,21 @@ export class DocumentDetailComponent
true true
) )
this.suggestions = null this.suggestions = null
if (this.openDocumentService.getOpenDocument(this.documentId)) { const openDocument = this.openDocumentService.getOpenDocument(
this.updateComponent( this.documentId
this.openDocumentService.getOpenDocument(this.documentId) )
) if (openDocument) {
if (this.documentForm.dirty) {
Object.assign(openDocument, this.documentForm.value)
openDocument['owner'] =
this.documentForm.get('permissions_form').value['owner']
openDocument['permissions'] =
this.documentForm.get('permissions_form').value[
'set_permissions'
]
delete openDocument['permissions_form']
}
this.updateComponent(openDocument)
} else { } else {
this.openDocumentService.openDocument(doc) this.openDocumentService.openDocument(doc)
this.updateComponent(doc) this.updateComponent(doc)