aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-04-09 13:42:17 +0000
committerGerrit Code Review <gerrit@onap.org>2020-04-09 13:42:17 +0000
commit07fd1a141654949bd6032b043f3d4784dc25e518 (patch)
tree36f30bb320190bc70e742ff0259311b610bd76b5 /cds-ui
parent3f85ebb6cb093a4d83903313ec72c1d4719bc468 (diff)
parent97a301cd80080fbf8fd1cab06371f5179ed25660 (diff)
Merge "CDS UI Save metadata bug fix"
Diffstat (limited to 'cds-ui')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/select-template/metadata/metadata.component.ts2
1 files changed, 1 insertions, 1 deletions
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 35643ee62..5ee3cb0de 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
@@ -149,7 +149,7 @@ export class MetadataComponent implements OnInit {
this.metadata = Object.assign({}, this.CBAMetadataForm.value);
this.blueprint.metadata = this.metadata;
this.filesData.forEach((fileNode) => {
- if (fileNode.name.includes(this.blueprintName) && fileNode.name == this.entryDefinition) {
+ if (fileNode.name.includes(this.blueprintName.trim()) && fileNode.name == this.entryDefinition) {
let tempNodeData = JSON.parse(fileNode.data);
tempNodeData.metadata = this.blueprint.metadata;
fileNode.data = JSON.stringify(tempNodeData, null, "\t");