From: c00149107 Date: Thu, 20 Apr 2017 08:43:24 +0000 (+0800) Subject: Replace invalid id by valid id X-Git-Tag: release/mercury~27^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=826ab3f8426b596627e03e4a31a18c37291b6b3d;p=vnfsdk%2Frefrepo.git Replace invalid id by valid id Replace invalid id by valid id Change-Id: I064a7f6235b7d622077540a949cb17d261701cef Issue-ID:CLIENT-192 Signed-off-by: c00149107 --- diff --git a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js index 85c7058b..65189e4e 100644 --- a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js +++ b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js @@ -365,7 +365,7 @@ function collectParamValue(identify, param) { */ function getParamId(identify, param) { var tmpname = param.name.replace(/-/g, '_'); - var tmpname1 = tmpname.replace(/./g, '_'); + var tmpname1 = tmpname.replace(/\./g, '_'); return '' ===identify ? tmpname1 : identify + '_' + tmpname1; }