diff options
author | Luji7 <lu.ji3@zte.com.cn> | 2017-10-24 19:41:34 +0800 |
---|---|---|
committer | Luji7 <lu.ji3@zte.com.cn> | 2017-10-24 19:41:39 +0800 |
commit | 92ef503e377f26d2c0abcd26e1d52387751e34f1 (patch) | |
tree | 36980f9e8e87f1cba779eb17e9d1667f4915588d /usecaseui-lcm/src/main/webapp/app/uui/fusion | |
parent | 79d3d38db36a938d7b3ae95cd6943cb36d8826fa (diff) |
Fix servicetype wrong.
Change-Id: Ibea542749b5ab8e785bd4dee64d686af326fe96a
Issue-id: USECASEUI-53
Signed-off-by: Luji7 <lu.ji3@zte.com.cn>
Diffstat (limited to 'usecaseui-lcm/src/main/webapp/app/uui/fusion')
-rw-r--r-- | usecaseui-lcm/src/main/webapp/app/uui/fusion/scripts/controller/lcmController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usecaseui-lcm/src/main/webapp/app/uui/fusion/scripts/controller/lcmController.js b/usecaseui-lcm/src/main/webapp/app/uui/fusion/scripts/controller/lcmController.js index 3bfb72e5..f443f349 100644 --- a/usecaseui-lcm/src/main/webapp/app/uui/fusion/scripts/controller/lcmController.js +++ b/usecaseui-lcm/src/main/webapp/app/uui/fusion/scripts/controller/lcmController.js @@ -73,7 +73,7 @@ app.controller('lcmCtrl', ['$scope', '$uibModal', '$log', '$http', '$timeout', ' return; } ctrl.canCreateService = "false"; - ServiceTemplateService.getServiceInstances(ctrl.customer.id, ctrl.serviceType.type, function (instances) { + ServiceTemplateService.getServiceInstances(ctrl.customer.id, ctrl.serviceType.value, function (instances) { ctrl.serviceInstances = instances; }); }; |