mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: always refresh document after save
This commit is contained in:
parent
7be7185418
commit
6c24686509
@ -638,13 +638,17 @@ export class DocumentDetailComponent
|
||||
this.documentForm.patchValue(docValues)
|
||||
this.store.next(this.documentForm.value)
|
||||
this.openDocumentService.setDirty(this.document, false)
|
||||
this.openDocumentService.save()
|
||||
this.toastService.showInfo($localize`Document saved successfully.`)
|
||||
this.networkActive = false
|
||||
this.error = null
|
||||
close &&
|
||||
if (close) {
|
||||
this.close(() =>
|
||||
this.openDocumentService.refreshDocument(this.documentId)
|
||||
)
|
||||
} else {
|
||||
this.openDocumentService.refreshDocument(this.documentId)
|
||||
}
|
||||
},
|
||||
error: (error) => {
|
||||
this.networkActive = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user