From 6b374664f4c49570b75e4d2fe6f3a4f6b327d56c Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 20 Jun 2019 20:11:08 +0530 Subject: Fixed bug CCSDK-1402 fixed defect ccsdk-1402 Issue-ID: CCSDK-1402 Change-Id: Ib654486f15b5a4b22ecdee355cf8a64af5e717d1 Signed-off-by: Arundathi Patil --- .../blueprint/select-template/metadata/metadata.component.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'cds-ui/client') diff --git a/cds-ui/client/src/app/feature-modules/blueprint/select-template/metadata/metadata.component.ts b/cds-ui/client/src/app/feature-modules/blueprint/select-template/metadata/metadata.component.ts index 609aacae7..0792c4478 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/select-template/metadata/metadata.component.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/select-template/metadata/metadata.component.ts @@ -98,7 +98,13 @@ export class MetadataComponent implements OnInit { UploadMetadata() { this.metadata = Object.assign({}, this.CBAMetadataForm.value); this.blueprint.metadata = this.metadata; - + if( this.blueprint && + this.blueprint['topology_template'] && + this.blueprint['topology_template'].workflows && + this.blueprint['topology_template'].workflows['resource-assignment'] && + this.blueprint['topology_template'].workflows['resource-assignment'].name) { + delete this.blueprint['topology_template'].workflows['resource-assignment'].name; + } this.filesData.forEach((fileNode) => { if (fileNode.name.includes(this.blueprintName) && fileNode.name == this.entryDefinition) { fileNode.data = JSON.stringify(this.blueprint, null, "\t"); -- cgit 1.2.3-korg