From 826ab3f8426b596627e03e4a31a18c37291b6b3d Mon Sep 17 00:00:00 2001 From: c00149107 Date: Thu, 20 Apr 2017 16:43:24 +0800 Subject: Replace invalid id by valid id Replace invalid id by valid id Change-Id: I064a7f6235b7d622077540a949cb17d261701cef Issue-ID:CLIENT-192 Signed-off-by: c00149107 --- lifecyclemgr/src/main/webapp/lifecyclemgr/js/DataService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lifecyclemgr/src') 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; } -- cgit 1.2.3-korg