aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuji7 <lu.ji3@zte.com.cn>2016-11-03 12:31:34 +0800
committerLuji7 <lu.ji3@zte.com.cn>2016-11-03 12:31:34 +0800
commit9ea12fd1258226bdf1827432c6f5a6d3d8b17d0e (patch)
tree3df707d520489039ef580a045693dd9426d96b34
parent13205f588c5bebb72c85f3def10cc4eef47aaba2 (diff)
Issue-Id: GSO-88 Fix parameter error
Change-Id: I7c907111888797f0afebdda16bdea390b33c473b Signed-off-by: Luji7 <lu.ji3@zte.com.cn>
-rw-r--r--openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html2
1 files changed, 1 insertions, 1 deletions
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 5d75323f..d33975fd 100644
--- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html
+++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/InputData.html
@@ -59,7 +59,7 @@
}
}
else{
- var nameObj = {name:key,showName:key};
+ var nameObj = {i18nKey:key,showName:key};
name = showName(nameObj);
}
$("body").append('<div class="mT15 form-group row" style="margin-top:35px;margin-left:25%"><div class="col-sm-6" align="right"><label class="control-label"><span style="font-size:16px;">'+ name + ':</span></label></div><div class="col-sm-6"><input type="text" name="" maxlength="256" style="margin-left:10px;width:250px;" data-toggle="tooltip" data-placement="top" title="'+ paramValue + '" value="'+ paramValue + '" readonly disabled/></div></div>');