Re-enable in-progress job url links

Change-Id: I7abd659886d5952d31a0875f2d36cd22f48fb3fc
This commit is contained in:
James E. Blair 2016-06-16 15:57:43 -07:00
parent 5960fbde5e
commit 2edd3ff43b

View File

@ -334,10 +334,14 @@ function format_change(change, change_queue) {
html += '<span class="jobwrapper"><span class="job">';
if (job['result'] !== null && job['report_url'] !== null) {
html += '<a href="'+job['report_url']+'">';
}
html += job['name'];
if (job['result'] !== null && job['report_url'] !== null) {
html += job['name'];
html += '</a>';
} else if (job['url'] !== null) {
html += '<a href="'+job['url']+'">';
html += job['name'];
html += '</a>';
} else {
html += job['name'];
}
html += ': ';
if (job['result'] === null && job['url'] !== null) {