From a6dc8a373eadeca497425eb776d21a948b58c43c Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 11 Oct 2022 12:23:15 -0700 Subject: [PATCH] Fix new storagepaths not showing in doc detail --- .../app/components/document-detail/document-detail.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index ff0a5303b..3a26c17f7 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -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) })