aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaka Cho <takamune.cho@att.com>2018-11-02 12:10:43 -0400
committerTaka Cho <takamune.cho@att.com>2018-11-02 12:11:31 -0400
commitba94e59cfe685b6ca43346ce8a734dc762ae6566 (patch)
tree1d9d2429ff4dd45ef04f270688990082f508f440
parent8340c1629b962cf2119ad88a76c1ef682a0b6c34 (diff)
fix the bug for Scaleout
remove the . from line 1631 Change-Id: Ibf7c4f66e522da4691f350f9be6601696cabc8a3 Issue-ID: APPC-1227 Signed-off-by: Taka Cho <takamune.cho@att.com>
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts2
1 files changed, 1 insertions, 1 deletions
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,