diff --git a/awx/ui/static/js/system-tracking/main.js b/awx/ui/static/js/system-tracking/main.js index ddf62cd754..2c92bd2e0f 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 23a6aed5eb..9a1c1de4c6 100644 --- a/awx/ui/static/js/system-tracking/system-tracking.controller.js +++ b/awx/ui/static/js/system-tracking/system-tracking.controller.js @@ -1,5 +1,3 @@ -export default - [ '$scope', - function($scope) { - $scope.viewType = 'host2host'; - }]; +export default ['$scope', function($scope) { + $scope.viewType = 'host2host'; +}]