diff options
author | jin xin <j00101220@huawei.com> | 2016-10-25 01:54:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@open-o.org> | 2016-10-25 01:54:20 +0000 |
commit | 86e9aee06f4cd16489947036b66d4d4159aeaf2e (patch) | |
tree | 6c53beeade17b4c946a63ce07797968ccd3bfd9a /openo-portal/portal-lifecyclemgr | |
parent | f35be4bfcad40cd5f8298bf759d1335f78de4e7b (diff) | |
parent | 130bd6a202f71cddc201b6e1b337eb1473c28ea5 (diff) |
Merge "Issue#GSO-30 Show empty string while no default value defination in response body." into sun
Diffstat (limited to 'openo-portal/portal-lifecyclemgr')
-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 985bb63f..4b135f70 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 @@ -142,7 +142,7 @@ function translateToTemplateParameters(inputs) { defaultValue: inputs[i].defaultValue, required: inputs[i].required, id: 'parameter_' + i, - value: inputs[i].defaultValue + value: inputs[i].defaultValue || '' }; } return {changed: false, parameters: inputParameters}; |