From 5c1294eb8e2dc00cae4ef21d6111e0fa18fc2caa Mon Sep 17 00:00:00 2001 From: imamSidero Date: Tue, 5 Sep 2023 11:06:25 +0100 Subject: Provide user to specify the ouput name while declaring the atrributes User specified output name is provided on declare output functionality Issue-ID: SDC-4616 Signed-off-by: Imam hussain Change-Id: Ic0cd50f9dde2482f5fbb2363cdc83d8fcf09f48f --- catalog-ui/src/app/models/attributes-outputs/attribute-be-model.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'catalog-ui/src/app/models') 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 a6966cd799..3ec03c5121 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 @@ -51,6 +51,7 @@ export class AttributeBEModel { subAttributeOutputPath: string; outputPath: string; toscaPresentation: ToscaPresentationData; + outputName: string; constructor(attribute?: AttributeBEModel) { if (attribute) { @@ -77,6 +78,7 @@ export class AttributeBEModel { this.subAttributeOutputPath = attribute.subAttributeOutputPath; this.toscaPresentation = attribute.toscaPresentation; this.outputPath = attribute.outputPath; + this.outputName = attribute.outputName; } if (!this.schema || !this.schema.property) { -- cgit 1.2.3-korg