diff options
author | Anaël Closson <ac2550@intl.att.com> | 2017-09-27 14:41:12 +0200 |
---|---|---|
committer | Anaël Closson <ac2550@intl.att.com> | 2017-09-28 12:24:26 +0200 |
commit | e13fc3ec06368e94daffd8cd2290a3f763744cd7 (patch) | |
tree | 703f8d1c4b71f8c67e8cd6d662e0702bbb084ee0 /src | |
parent | dc57cba2262ee761cd8fdf64322bd27c4c704925 (diff) |
Fix fields not restored on tca open
Change-Id: I18bb36d7df0aa982f941c9153a86ab17a48f4295
Issue-ID: CLAMP-58
Signed-off-by: Anaël Closson <ac2550@intl.att.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/META-INF/resources/designer/partials/portfolios/tca_properties.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/resources/META-INF/resources/designer/partials/portfolios/tca_properties.html b/src/main/resources/META-INF/resources/designer/partials/portfolios/tca_properties.html index 49d05b199..cfb4432d5 100644 --- a/src/main/resources/META-INF/resources/designer/partials/portfolios/tca_properties.html +++ b/src/main/resources/META-INF/resources/designer/partials/portfolios/tca_properties.html @@ -360,7 +360,9 @@ $("#formId" + num + " #tcaTable").prepend("<tr><td>" +arr[x][i]["serviceConfigurations"][j][0]+" " +(Object.keys(defaults_props['tca']['operator']).find(key => defaults_props['tca']['operator'][key] == (arr[x][i]["serviceConfigurations"][j][1])))+ " " - +arr[x][i]["serviceConfigurations"][j][2]+"</td></tr>"); + +arr[x][i]["serviceConfigurations"][j][2]+" " + +arr[x][i]["serviceConfigurations"][j][3]+" " + +arr[x][i]["serviceConfigurations"][j][4]+"</td></tr>"); } } else { $("#formId" + num + " #"+arr[x][i].name).val(arr[x][i].value); |