From b6d953c506c08a5369c0be7242ef3ce3ec888452 Mon Sep 17 00:00:00 2001 From: vasraz Date: Fri, 5 Feb 2021 19:24:06 +0000 Subject: Implement Attributes/Outputs BE (part 2) This commit includes support for: - declare Attribute as Output - undeclare Attribute as Output - export 'Tosca Artifacts' with Attributes/Outputs Change-Id: Iedfbf936e439fd2f7d252b660fe2c42b8d9b9113 Signed-off-by: Vasyl Razinkov Issue-ID: SDC-3448 --- catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts') diff --git a/catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts b/catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts index e06a807264..6af23a55ae 100644 --- a/catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts +++ b/catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts @@ -34,7 +34,6 @@ export class AttributeBEModel { constraints: any[]; defaultValue: string; - definition: boolean; description: string; fromDerived: boolean; getOutputValues: AttributeOutputDetail[]; @@ -69,7 +68,6 @@ export class AttributeBEModel { this.type = attribute.type; this.uniqueId = attribute.uniqueId; this.value = attribute.value; - this.definition = attribute.definition; this.getOutputValues = attribute.getOutputValues; this.parentAttributeType = attribute.parentAttributeType; this.subAttributeOutputPath = attribute.subAttributeOutputPath; -- cgit 1.2.3-korg