From a6fc7a9303edd6f11a4766701981d4ff30cc40ef Mon Sep 17 00:00:00 2001 From: aribeiro Date: Thu, 11 Nov 2021 15:31:07 +0000 Subject: Fix archive and restore actions Issue-ID: SDC-3784 Signed-off-by: aribeiro Change-Id: Ia2d556913834fb65570470ed1dd79095f7b0411d --- .../src/app/models/componentsInstances/fullComponentInstance.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'catalog-ui/src/app/models/componentsInstances') diff --git a/catalog-ui/src/app/models/componentsInstances/fullComponentInstance.ts b/catalog-ui/src/app/models/componentsInstances/fullComponentInstance.ts index f5f06b8aba..269663f4ef 100644 --- a/catalog-ui/src/app/models/componentsInstances/fullComponentInstance.ts +++ b/catalog-ui/src/app/models/componentsInstances/fullComponentInstance.ts @@ -19,7 +19,7 @@ export class FullComponentInstance extends ComponentInstance { public systemName:string; public uuid:string; public lifecycleState: string; - public archived: boolean; + public isArchived: boolean; public isServiceInstance: boolean; public isResourceInstance: boolean; @@ -61,7 +61,7 @@ export class FullComponentInstance extends ComponentInstance { this.systemName = originComponent.systemName; this.uuid = originComponent.uuid; this.lifecycleState = originComponent.lifecycleState; - this.archived = originComponent.archived; + this.isArchived = originComponent.isArchived; this.attributes = originComponent.attributes; this.directives = componentInstance.directives; -- cgit 1.2.3-korg