diff --git a/awx/ui/client/features/templates/templatesList.controller.js b/awx/ui/client/features/templates/templatesList.controller.js index 8481135d1e..2500a78816 100644 --- a/awx/ui/client/features/templates/templatesList.controller.js +++ b/awx/ui/client/features/templates/templatesList.controller.js @@ -138,6 +138,10 @@ function ListTemplatesController( const recentJob = template.summary_fields.recent_jobs[i]; if (recentJob.id === msg.unified_job_id) { recentJob.status = msg.status; + if (msg.finished) { + recentJob.finished = msg.finished; + template.last_job_run = msg.finished; + } break; } };