From a778ffd028862051f98b822bbec5efd3871d758f Mon Sep 17 00:00:00 2001 From: Sharma Date: Thu, 11 Jun 2026 17:13:31 +0530 Subject: [PATCH] Fixed a reading undefined error --- .../Containers/flow-container/flow-container.component.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/angular-sdk-components/src/lib/_components/infra/Containers/flow-container/flow-container.component.ts b/packages/angular-sdk-components/src/lib/_components/infra/Containers/flow-container/flow-container.component.ts index 512da295..96628b7d 100644 --- a/packages/angular-sdk-components/src/lib/_components/infra/Containers/flow-container/flow-container.component.ts +++ b/packages/angular-sdk-components/src/lib/_components/infra/Containers/flow-container/flow-container.component.ts @@ -279,8 +279,12 @@ export class FlowContainerComponent extends FlowContainerBaseComponent implement // this.containerName$ = oWorkMeta["name"]; if (bLoadChildren && oWorkData) { - this.containerName$ = this.localizedVal(this.getActiveViewLabel() || oWorkData.caseInfo.assignments?.[0].name, undefined, this.localeReference); - this.isMultiStep = this.utils.getBooleanValue(oWorkData.caseInfo.assignments?.[0].isMultiStep); + this.containerName$ = this.localizedVal( + this.getActiveViewLabel() || oWorkData.caseInfo.assignments?.[0]?.name, + undefined, + this.localeReference + ); + this.isMultiStep = this.utils.getBooleanValue(oWorkData.caseInfo.assignments?.[0]?.isMultiStep); } // turn off spinner