From 6df36ce03890d2fd4906d46d7946c6205967db85 Mon Sep 17 00:00:00 2001 From: jaredevantabor Date: Thu, 26 Jan 2017 16:29:12 -0800 Subject: [PATCH] i accidentally removed the "-1" from this check, adding it back in --- awx/ui/client/src/job-results/job-results.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/job-results/job-results.controller.js b/awx/ui/client/src/job-results/job-results.controller.js index aae648ccc6..91226e8b59 100644 --- a/awx/ui/client/src/job-results/job-results.controller.js +++ b/awx/ui/client/src/job-results/job-results.controller.js @@ -330,7 +330,7 @@ function(jobData, jobDataOptions, jobLabels, jobFinished, count, $scope, ParseTy $scope.events[mungedEvent.counter] .event = mungedEvent; - if (mungedEvent.stdout.indexOf("not_skeleton")) { + if (mungedEvent.stdout.indexOf("not_skeleton") > -1) { // put non-duplicate lines into the standard // out pane where they should go (within the // right header section, before the next line