diff options
author | aribeiro <anderson.ribeiro@est.tech> | 2021-11-11 15:31:07 +0000 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2021-11-15 13:48:19 +0000 |
commit | a6fc7a9303edd6f11a4766701981d4ff30cc40ef (patch) | |
tree | 43d197ab085e6a2efd549c7aa355a1c2c30eeb66 /catalog-ui/src/app/models/component-metadata.ts | |
parent | b08ac296b31f001c946b1371f213ac302ff9c12e (diff) |
Fix archive and restore actions
Issue-ID: SDC-3784
Signed-off-by: aribeiro <anderson.ribeiro@est.tech>
Change-Id: Ia2d556913834fb65570470ed1dd79095f7b0411d
Diffstat (limited to 'catalog-ui/src/app/models/component-metadata.ts')
-rw-r--r-- | catalog-ui/src/app/models/component-metadata.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/catalog-ui/src/app/models/component-metadata.ts b/catalog-ui/src/app/models/component-metadata.ts index 2aae97744d..e135e897de 100644 --- a/catalog-ui/src/app/models/component-metadata.ts +++ b/catalog-ui/src/app/models/component-metadata.ts @@ -50,7 +50,7 @@ export interface IComponentMetadata { highestVersion: boolean; normalizedName: string; systemName: string; - archived: boolean; + isArchived: boolean; vspArchived: boolean; selectedCategory: string; filterTerm: string; @@ -116,7 +116,7 @@ export class ComponentMetadata implements IComponentMetadata { public highestVersion: boolean; public normalizedName: string; public systemName: string; - public archived: boolean; + public isArchived: boolean; public vspArchived: boolean; public toscaResourceName: string; public selectedCategory: string; @@ -197,7 +197,7 @@ export class ComponentMetadata implements IComponentMetadata { this.serviceType = response.serviceType; this.serviceRole = response.serviceRole; this.environmentContext = response.environmentContext; - this.archived = response.archived; + this.isArchived = response.isArchived; this.instantiationType = response.instantiationType; this.vspArchived = response.vspArchived; this.toscaResourceName = response.toscaResourceName; |