Revert "Only add changes to status page with jobs"

This reverts commit d9f1f82b4e.

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
This commit is contained in:
James E. Blair 2017-09-05 07:59:13 -07:00
parent 6fcf115d02
commit 13c5ffca25
1 changed files with 5 additions and 8 deletions

View File

@ -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);
});
});
});