Merge pull request #1777 from paperless-ngx/fix/issue-1776

Fix: creating new storage path on document edit fails to update menu
This commit is contained in:
shamoon 2022-10-11 19:59:02 -07:00 committed by GitHub
commit 7f1d01e443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -337,7 +337,7 @@ export class DocumentDetailComponent
}) })
) )
.pipe(takeUntil(this.unsubscribeNotifier)) .pipe(takeUntil(this.unsubscribeNotifier))
.subscribe(({ newStoragePath, documentTypes: storagePaths }) => { .subscribe(({ newStoragePath, storagePaths }) => {
this.storagePaths = storagePaths.results this.storagePaths = storagePaths.results
this.documentForm.get('storage_path').setValue(newStoragePath.id) this.documentForm.get('storage_path').setValue(newStoragePath.id)
}) })