From 17d9d2000f9ae188e1b387ac3f577ce88e61ffb9 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Mon, 30 Jun 2014 23:22:46 -0400 Subject: [PATCH] Fixed JS compile error --- awx/ui/static/js/helpers/JobDetail.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/awx/ui/static/js/helpers/JobDetail.js b/awx/ui/static/js/helpers/JobDetail.js index f9272559a8..74374b4f7d 100644 --- a/awx/ui/static/js/helpers/JobDetail.js +++ b/awx/ui/static/js/helpers/JobDetail.js @@ -1047,8 +1047,6 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge return 0; }); - console.log(hostSummaries); - while (idx < keys.length && result.length < scope.hostSummariesMaxRows) { if (scope.searchAllStatus === 'failed') { if (hostSummaries[keys[idx]].status === 'failed') { @@ -1290,4 +1288,4 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge my_scope.$destroy(); }; }; -}]); \ No newline at end of file +}]);