diff --git a/modules/openstack_project/templates/zuul/status.js.erb b/modules/openstack_project/templates/zuul/status.js.erb index 9067b2911f..280624a166 100644 --- a/modules/openstack_project/templates/zuul/status.js.erb +++ b/modules/openstack_project/templates/zuul/status.js.erb @@ -332,7 +332,13 @@ function format_change(change, change_queue) { result_class += " result_unstable"; } html += ''; + if (job['result'] !== null && job['report_url'] !== null) { + html += ''; + } html += job['name']; + if (job['result'] !== null && job['report_url'] !== null) { + html += ''; + } html += ': '; if (job['result'] === null && job['url'] !== null) { html += format_progress(job['elapsed_time'], job['remaining_time']);