diff --git a/awx/ui/static/js/system-tracking/main.js b/awx/ui/static/js/system-tracking/main.js index 2c92bd2e0f..ddf62cd754 100644 --- a/awx/ui/static/js/system-tracking/main.js +++ b/awx/ui/static/js/system-tracking/main.js @@ -5,5 +5,5 @@ export default .config(['$routeProvider', function($routeProvider) { var url = route.route; delete route.route; - $routeProvider.when(url, route) + $routeProvider.when(url, route); }]); diff --git a/awx/ui/static/js/system-tracking/system-tracking.controller.js b/awx/ui/static/js/system-tracking/system-tracking.controller.js index 9a1c1de4c6..23a6aed5eb 100644 --- a/awx/ui/static/js/system-tracking/system-tracking.controller.js +++ b/awx/ui/static/js/system-tracking/system-tracking.controller.js @@ -1,3 +1,5 @@ -export default ['$scope', function($scope) { - $scope.viewType = 'host2host'; -}] +export default + [ '$scope', + function($scope) { + $scope.viewType = 'host2host'; + }];