diff options
author | Luji7 <lu.ji3@zte.com.cn> | 2016-11-03 15:49:58 +0800 |
---|---|---|
committer | Luji7 <lu.ji3@zte.com.cn> | 2016-11-03 15:49:58 +0800 |
commit | b0f4a4f377d66619a9a5c45643fdd0ca0bc5ebc7 (patch) | |
tree | 52dda18424e485b32cbb37ecef7bea1d775dd2b9 | |
parent | fa92c703fe15864a83aa01652a184c1bc8529d8b (diff) |
Issue-Id: GSO-88 Fix substitution error
Change-Id: Iadd52b9adbd32a6921612351171e4c90ac1debd9
Signed-off-by: Luji7 <lu.ji3@zte.com.cn>
-rw-r--r-- | openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js index ee9ae621..265ecd12 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js @@ -148,7 +148,7 @@ function fetchServiceTemplateBy(templateId) { template.name = response.templateName; template.gsarId = response.csarId; template.id = response.id; - template.nodeType = response.substitution.nodeType; + template.nodeType = ''; return fetchCsar(template.gsarId); } ).then( |