From 9628ef7b455c829b78c97d32a866eb87e7cdf41e Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 26 Feb 2026 10:53:11 +0100 Subject: [PATCH] Skip branches with no builds --- master/custom/templates/releasedashboard.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/master/custom/templates/releasedashboard.html b/master/custom/templates/releasedashboard.html index 3ab6515c..d7cc8704 100644 --- a/master/custom/templates/releasedashboard.html +++ b/master/custom/templates/releasedashboard.html @@ -173,6 +173,9 @@

Problems by Branch

{% for branch in state.branches %} + {% if not branch.problems %} + {% continue %} + {% endif %}

{{ branch.title }}