incremental
diff --git a/static/js/selController.js b/static/js/selController.js
index 06c1abb..78d90d4 100644
--- a/static/js/selController.js
+++ b/static/js/selController.js
@@ -765,7 +765,7 @@
 }
 
 
-angular.module('bmcApp').controller('selController', function($scope) {
+angular.module('bmcApp').controller('selController', ['$scope', function($scope) {
 
     var sdr_promise = Restangular.all('sdrentries').getList();
     var sel_promise = Restangular.all('selentries').getList();
@@ -890,4 +890,4 @@
     $scope.uncheckAll = function () {
         $scope.selectedColumns["controller"] = [];
     };
-});
\ No newline at end of file
+}]);
\ No newline at end of file