Fix new storagepaths not showing in doc detail

This commit is contained in:
Michael Shamoon 2022-10-11 12:23:15 -07:00
parent dafefa33d6
commit a6dc8a373e

View File

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