aboutsummaryrefslogtreecommitdiffstats
path: root/lifecyclemgr
diff options
context:
space:
mode:
authorTao Shen <shentao@chinamobile.com>2017-04-20 09:26:26 +0000
committerGerrit Code Review <gerrit@open-o.org>2017-04-20 09:26:26 +0000
commit87a07473cfd7a8d8211922a753b7f994d5731a9a (patch)
tree94d8d92a127aa7fa15389d96032840da4a9054e5 /lifecyclemgr
parent956207e75c89465b4c64fdb840be7c348c2806ba (diff)
parent826ab3f8426b596627e03e4a31a18c37291b6b3d (diff)
Merge "Replace invalid id by valid id"
Diffstat (limited to 'lifecyclemgr')
-rw-r--r--lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js2
1 files changed, 1 insertions, 1 deletions
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;
}