diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-09-10 12:59:57 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-10 12:59:57 +0000 |
commit | 90cbfcabf6a73c466d3284191f2e2b6a472b41b6 (patch) | |
tree | 73ac95dcc1fb24350113981bd09b2784f04abe34 | |
parent | 0005c2c2bc7f52dd0f8d738c970c900f3144b6f8 (diff) | |
parent | 8694b431fc46213c4f1d2ae0606e7598a509ef0c (diff) |
Merge "Semicolon at the end of the Statement and Remove trailing whitespaces at the end of this line"
-rw-r--r-- | vid-app-common/src/main/webapp/app/vid/scripts/controller/pnfSearchAssociationController.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/pnfSearchAssociationController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/pnfSearchAssociationController.js index 352d9ca8d..0cc92eee3 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/pnfSearchAssociationController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/pnfSearchAssociationController.js @@ -47,8 +47,8 @@ appDS2.controller("pnfSearchAssociationController", ["COMPONENT", "$log", "FIELD var handleGetParametersResponse = function(parameters) { $scope.serviceMetadataFields = parameters.summaryList; $scope.serviceMetadataFields.forEach(function (t, number) { - $scope.serviceMetadataFields[number].key = $scope.serviceMetadataFields[number].name.split(' ').join('') - }) + $scope.serviceMetadataFields[number].key = $scope.serviceMetadataFields[number].name.split(' ').join(''); + }); $scope.nodeTemplateFields = _.keyBy(parameters.userProvidedList, 'id'); }; @@ -74,7 +74,7 @@ appDS2.controller("pnfSearchAssociationController", ["COMPONENT", "$log", "FIELD $scope.notFound= true; }); - } + }; var modalInstance; $scope.associate = function() { @@ -99,9 +99,7 @@ appDS2.controller("pnfSearchAssociationController", ["COMPONENT", "$log", "FIELD return null; } } - }) - - + }); }; var updateViewCallbackFunction = function(response) { |