summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJames E. Blair <jeblair@redhat.com>2017-09-05 07:59:13 -0700
committerJames E. Blair <jeblair@redhat.com>2017-09-05 07:59:56 -0700
commit13c5ffca25e378fadd205f86cd399fc79db7c0f2 (patch)
treef4bcaa372cf18f8270857aa03befd01e30ab2e8a /etc
parent6fcf115d02461540b1abde92d26a010a6ba978a3 (diff)
downloadzuul-13c5ffca25e378fadd205f86cd399fc79db7c0f2.tar.gz
Revert "Only add changes to status page with jobs"
This reverts commit d9f1f82b4e6fb85829c392337c339282d8a3cf96. This change has been confusing because it makes it hard to detect when a change is sitting in a pipeline waiting for a merge. Change-Id: I3cc74db8c13f73d0a609f15a42bbe765a163084b
Diffstat (limited to 'etc')
-rw-r--r--etc/status/public_html/jquery.zuul.js13
1 files changed, 5 insertions, 8 deletions
diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js
index c2cf279cf..1937cd597 100644
--- a/etc/status/public_html/jquery.zuul.js
+++ b/etc/status/public_html/jquery.zuul.js
@@ -554,14 +554,11 @@
}
$.each(changes, function (change_i, change) {
- // Only add a change when it has jobs
- if (change.jobs.length > 0) {
- var $change_box =
- format.change_with_status_tree(
- change, change_queue);
- $html.append($change_box);
- format.display_patchset($change_box);
- }
+ var $change_box =
+ format.change_with_status_tree(
+ change, change_queue);
+ $html.append($change_box);
+ format.display_patchset($change_box);
});
});
});