diff --git a/modules/openstack_project/files/zuul/status.js b/modules/openstack_project/files/zuul/status.js index 4c8ba101c8..e10d818c50 100644 --- a/modules/openstack_project/files/zuul/status.js +++ b/modules/openstack_project/files/zuul/status.js @@ -195,6 +195,9 @@ function format_pipeline(data) { } function safe_id(id) { + if (id === null) { + return "null"; + } return id.replace(',', '_'); } @@ -225,7 +228,7 @@ function format_change(change, change_queue) { } html += ''; - html += '
'; + html += '
'; html += '' + change['project'] + ''; var id = change['id'];