From ba94e59cfe685b6ca43346ce8a734dc762ae6566 Mon Sep 17 00:00:00 2001 From: Taka Cho Date: Fri, 2 Nov 2018 12:10:43 -0400 Subject: fix the bug for Scaleout remove the . from line 1631 Change-Id: Ibf7c4f66e522da4691f350f9be6601696cabc8a3 Issue-ID: APPC-1227 Signed-off-by: Taka Cho --- .../build-artifacts/reference-dataform/reference-dataform.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts index d2a0fe2..17a23e2 100644 --- a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts +++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts @@ -1628,7 +1628,7 @@ export class ReferenceDataformComponent implements OnInit { //for replacing spaces and "/" with "_" identifiers[x] = identifiers[x].replace(/ /g, '').replace(new RegExp('/', 'g'), '_').replace(/ /g, ''); pd_fileName = this.referenceDataObject.action + '_' + scopeName + '_' + '0.0.1V_' + identifiers[x] + '.yaml'; - config_template_fileName = this.referenceDataObject.action + '_' + scopeName + '_' + '0.0.1V_' + identifiers[x] + '.' + extension; + config_template_fileName = this.referenceDataObject.action + '_' + scopeName + '_' + '0.0.1V_' + identifiers[x] + extension; configTemplate = { 'artifact-name': 'template_' + config_template_fileName, -- cgit 1.2.3-korg