From 604194d78c49d1d4b7c0c9a49241951bbc3cf093 Mon Sep 17 00:00:00 2001 From: Seshu-Kumar-M Date: Mon, 31 Oct 2016 15:54:59 +0800 Subject: GSO-77 Change-Id: I6e6556971dee68cbdb1109cea493c0e56133793b Signed-off-by: Seshu-Kumar-M --- .../src/main/webapp/lifecyclemgr/InputData.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'openo-portal/portal-lifecyclemgr') diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html index 917cff16..e11bd632 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html @@ -40,7 +40,12 @@ if (jsonData != null) { $("body").empty(); for(var key in jsonData.inputParameters){ - $("body").append('
'); + var name = key; + if(name.includes('.')) + { + name = key.substring(key.lastInexOf('.')+1,key.length); + } + $("body").append('
'); } } -- cgit 1.2.3-korg