diff options
author | anushadasari <danush10@in.ibm.com> | 2019-08-05 21:46:29 +0530 |
---|---|---|
committer | anushadasari <danush10@in.ibm.com> | 2019-08-05 21:49:54 +0530 |
commit | 86a2c9e15470079d818b37d01fb01771e951622e (patch) | |
tree | 967473e14244c827ff6fbbccbac5d8c08a38ad13 /ccsdk-app-overlay | |
parent | 1f6974b83c94c9760128ff7f02b713c0ec82787a (diff) |
Sonar- blueprint-controllers.js
Add a semicolon at the end of this statement.
Remove the useless trailing whitespaces at the end of this line.
Change-Id: Iae0434b07bcc713794164079f626e781e1de844d
Issue-ID: CCSDK-1582
Signed-off-by: anushadasari <danush10@in.ibm.com>
Diffstat (limited to 'ccsdk-app-overlay')
-rw-r--r-- | ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js b/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js index d5d124b..2590de1 100644 --- a/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js +++ b/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js @@ -19,9 +19,7 @@ * * ECOMP is a trademark and service mark of AT&T Intellectual Property. *******************************************************************************/ -appDS2.controller('blueprintTableController', function( - $rootScope, $scope, $log, $modal, modalService, BlueprintService) { - +appDS2.controller('blueprintTableController', function($rootScope, $scope, $log, $modal, modalService, BlueprintService) { 'use strict'; // Controls logging in this controller @@ -140,7 +138,7 @@ appDS2.controller('blueprintTableController', function( } else { // success, get the updated list. - $scope.ecdapp.loadTable() + $scope.ecdapp.loadTable(); } } }); |