diff options
-rw-r--r-- | lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js | 2 |
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;
}
|