diff options
author | xg353y <xg353y@intl.att.com> | 2019-02-20 12:45:04 +0100 |
---|---|---|
committer | xg353y <xg353y@intl.att.com> | 2019-02-20 13:47:13 +0100 |
commit | 1885741f27d74104a34cadf1f4d9c73f82c4fcff (patch) | |
tree | 957923b5bc4ee8b6dfdfb12995b6ef244def0491 /src/main/resources/META-INF | |
parent | 9eb3c7a2fa4f6cace52d49a84123f370babaf57f (diff) |
Fix the bugs
Fix the bugs in tosca model related code, due to the json removal
activity.
Issue-ID: CLAMP-292
Change-Id: I6306930052b876b1ba8b0e1ce71689d4499e165c
Change-Id: I6306930052b876b1ba8b0e1ce71689d4499e165c
Signed-off-by: xg353y <xg353y@intl.att.com>
Diffstat (limited to 'src/main/resources/META-INF')
-rw-r--r-- | src/main/resources/META-INF/resources/designer/scripts/ToscaModelCtrl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/META-INF/resources/designer/scripts/ToscaModelCtrl.js b/src/main/resources/META-INF/resources/designer/scripts/ToscaModelCtrl.js index dc71fcd2f..f78ad1e6b 100644 --- a/src/main/resources/META-INF/resources/designer/scripts/ToscaModelCtrl.js +++ b/src/main/resources/META-INF/resources/designer/scripts/ToscaModelCtrl.js @@ -29,7 +29,7 @@ app.controller('ToscaModelCtrl', toscaModelService.getHpModelJsonByPolicyType(selectedPolicy).then(function(response) { $('#editor').empty(); - var toscaModel = JSON.parse(response.body.toscaModelJson); + var toscaModel = JSON.parse(response.toscaModelJson); if($scope.policyList && toscaModel.schema.properties && toscaModel.schema.properties.policyList){ toscaModel.schema.properties.policyList.enum = $scope.policyList; } |