diff --git a/modules/openstack_project/templates/zuul/status.js.erb b/modules/openstack_project/templates/zuul/status.js.erb index 280624a166..ccbfacdc0c 100644 --- a/modules/openstack_project/templates/zuul/status.js.erb +++ b/modules/openstack_project/templates/zuul/status.js.erb @@ -334,10 +334,14 @@ function format_change(change, change_queue) { html += ''; if (job['result'] !== null && job['report_url'] !== null) { html += ''; - } - html += job['name']; - if (job['result'] !== null && job['report_url'] !== null) { + html += job['name']; html += ''; + } else if (job['url'] !== null) { + html += ''; + html += job['name']; + html += ''; + } else { + html += job['name']; } html += ': '; if (job['result'] === null && job['url'] !== null) {