From 66e26cfa1d688ed4c695ee335a99f8f8dd94c485 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Mon, 18 Aug 2014 16:44:57 -0400 Subject: [PATCH] Job detail page Fixed mistyped variable name --- awx/ui/static/js/helpers/JobDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/JobDetail.js b/awx/ui/static/js/helpers/JobDetail.js index c6e4314318..45178ac157 100644 --- a/awx/ui/static/js/helpers/JobDetail.js +++ b/awx/ui/static/js/helpers/JobDetail.js @@ -835,7 +835,7 @@ function($rootScope, $log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, Ge if (idx < data.results.length - 1) { // end date = starting date of the next event - end = data.resuls[idx + 1].created; + end = data.results[idx + 1].created; } else { // no next event (task), get the end time of the play