From fed8a83b08ce5d9b7a863c161be8eacef2bf75fb Mon Sep 17 00:00:00 2001 From: Leigh Johnson Date: Mon, 11 Jul 2016 12:09:16 -0400 Subject: [PATCH] fixed kickback on #2795 (#2884) --- awx/ui/client/src/smart-status/smart-status.controller.js | 1 + awx/ui/client/src/smart-status/smart-status.partial.html | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/smart-status/smart-status.controller.js b/awx/ui/client/src/smart-status/smart-status.controller.js index e222509d30..ff18ba9300 100644 --- a/awx/ui/client/src/smart-status/smart-status.controller.js +++ b/awx/ui/client/src/smart-status/smart-status.controller.js @@ -32,6 +32,7 @@ export default ['$scope', '$filter', data.jobId = job.id; data.sortDate = job.finished || "running" + data.jobId; data.finished = $filter('longDate')(job.finished) || job.status+""; + data.status_tip = "JOB ID: " + data.jobId + "
STATUS: " + data.smartStatus + "
FINISHED: " + data.finished; return data; }), "sortDate").reverse(); diff --git a/awx/ui/client/src/smart-status/smart-status.partial.html b/awx/ui/client/src/smart-status/smart-status.partial.html index e100caf913..e8fa03bc56 100644 --- a/awx/ui/client/src/smart-status/smart-status.partial.html +++ b/awx/ui/client/src/smart-status/smart-status.partial.html @@ -1,8 +1,8 @@