From a48605e7984d9488f1bfa4b333bc4fd011914902 Mon Sep 17 00:00:00 2001 From: Luji7 Date: Mon, 24 Oct 2016 15:10:33 +0800 Subject: Issue#GSO-30 Show empty string while no default value defination in response body. Change-Id: If02b8ffbdddbd63d5eccae0f31ac2aa655318a68 Signed-off-by: Luji7 --- .../portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/gsolcm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 37cb05f3..a9eba6f2 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}; -- cgit 1.2.3-korg