summaryrefslogtreecommitdiffstats
path: root/catalog-ui
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2021-02-05 19:24:06 +0000
committerChristophe Closset <christophe.closset@intl.att.com>2021-02-24 08:03:45 +0000
commitb6d953c506c08a5369c0be7242ef3ce3ec888452 (patch)
treedbe45662f4252e88df9161c917664ba578bcc7a3 /catalog-ui
parentb485c37b36ddb3ab5e8085c009b26e97c8e62d74 (diff)
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 <vasyl.razinkov@est.tech> Issue-ID: SDC-3448
Diffstat (limited to 'catalog-ui')
-rw-r--r--catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts2
1 files changed, 0 insertions, 2 deletions
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;