From 1823032f3cbb6a2a8e407d20a235f32fca7b9f7c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 19 May 2016 16:05:37 -0400 Subject: [PATCH] Don't refer to a different page for stdout - it's on the same page now. Related to #1557. --- awx/ui/client/src/job-detail/job-detail.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/job-detail/job-detail.controller.js b/awx/ui/client/src/job-detail/job-detail.controller.js index 6ee868a498..2061d00df3 100644 --- a/awx/ui/client/src/job-detail/job-detail.controller.js +++ b/awx/ui/client/src/job-detail/job-detail.controller.js @@ -435,7 +435,7 @@ export default // 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 = "See standard out for more details"; } } data.results.forEach(function(event, idx) {