fix the bug for Scaleout 44/71744/1
authorTaka Cho <takamune.cho@att.com>
Fri, 2 Nov 2018 16:10:43 +0000 (12:10 -0400)
committerTaka Cho <takamune.cho@att.com>
Fri, 2 Nov 2018 16:11:31 +0000 (12:11 -0400)
remove the . from line 1631

Change-Id: Ibf7c4f66e522da4691f350f9be6601696cabc8a3
Issue-ID: APPC-1227
Signed-off-by: Taka Cho <takamune.cho@att.com>
src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts

index d2a0fe2..17a23e2 100644 (file)
@@ -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,