From d445b29ae905b14fbf86cbdbad6c18894a97ffda Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Wed, 13 Aug 2014 19:19:08 -0400 Subject: [PATCH] Job detail page Included the fa-external-link icon in the View stdout for more detail link in support of the garbled playbook. --- awx/ui/static/js/controllers/JobDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/controllers/JobDetail.js b/awx/ui/static/js/controllers/JobDetail.js index 8c4df8edcd..1b2f2125d4 100644 --- a/awx/ui/static/js/controllers/JobDetail.js +++ b/awx/ui/static/js/controllers/JobDetail.js @@ -439,7 +439,7 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar // if we are here, there are no plays and the job has failed, let the user know they may want to consult stdout if (scope.job_status.status === 'failed' || scope.job_status.status === 'error' && (!scope.job_status.explanation)) { - scope.job_status.explanation = "View stdout for more detail"; + scope.job_status.explanation = "View stdout for more detail "; } } data.results.forEach(function(event, idx) {