summaryrefslogtreecommitdiffstats
path: root/lifecyclemgr
diff options
context:
space:
mode:
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;
}