From bab20a4e62be746cea4a2987ee17a41872d8862d Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Mon, 9 Feb 2015 13:03:10 -0800 Subject: [PATCH] Zuul status: Use a grey icon for non-live changes Update the zuul status page javascript to use a grey icon when representing non-live changes. This change has already been made in the zuul project js. Change-Id: I60bfa3b7f24e9638fe9be41f07ee472827fb64f9 --- modules/openstack_project/files/zuul/status.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/openstack_project/files/zuul/status.js b/modules/openstack_project/files/zuul/status.js index d2191fef9b..8838c5bb8e 100644 --- a/modules/openstack_project/files/zuul/status.js +++ b/modules/openstack_project/files/zuul/status.js @@ -240,6 +240,8 @@ function format_change(change, change_queue) { if (i == change['_tree_index']) { if (change['active'] != true) { html += ''; + } else if (change.live != true) { + html += ''; } else if (change['failing_reasons'] && change['failing_reasons'].length > 0) { var reason = change['failing_reasons'].join(', '); var image = 'red.png';