Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit 0dd805a

Browse files
committed
bug fix
1 parent 75d2b42 commit 0dd805a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/webapp/js/settings/components/components-controller.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
function ComponentCtrl($scope, ConfigurationService){
4-
$scope.components = ConfigurationService.getNS;
4+
$scope.components = ConfigurationService.getAllComponents();
55
}
66

77

@@ -10,7 +10,6 @@ function ComponentServicesCtrl($scope, ConfigurationService){
1010
$scope.services = [];
1111

1212
$scope.getServices = function(uri){
13-
console.log("get Services"+uri);
1413
$scope.services = ConfigurationService.getComponentServices(uri);
1514
};
1615

0 commit comments

Comments
 (0)