From 27fc9c13bdc1f94f1d114f2cb4862e3ef06628cd Mon Sep 17 00:00:00 2001 From: Shakti Suman Date: Mon, 12 Jan 2026 01:51:07 -0800 Subject: [PATCH] Show branch name on build dashboard. This commit adds branch name to build dashboard's builds list table. Closes #561 Signed-off-by: Shakti Suman --- dash/muslBuilds.html | 6 ++++++ dash/picoBuilds.html | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/dash/muslBuilds.html b/dash/muslBuilds.html index 0e77b4c0c..76f932936 100644 --- a/dash/muslBuilds.html +++ b/dash/muslBuilds.html @@ -8,6 +8,7 @@ Date Build ID + Branch Status @@ -20,6 +21,11 @@ let newRow = ""; newRow += "" + rowData.date + " - " + rowData.time + ""; newRow += "" + rowData.run_id + ""; + let branch = rowData.branch; + if (branch == null) + newRow += ""; + else + newRow += "" + branch + ""; let build_state = rowData.state.toUpperCase(); if (build_state == "PASS") newRow += "" + rowData.state.toUpperCase() + ""; diff --git a/dash/picoBuilds.html b/dash/picoBuilds.html index e24243a55..1b0041c0f 100644 --- a/dash/picoBuilds.html +++ b/dash/picoBuilds.html @@ -9,6 +9,7 @@ Date Build ID Architecture + Branch Status @@ -26,6 +27,11 @@ newRow += ""; else newRow += "" + arch + ""; + let branch = rowData.branch; + if (branch == null) + newRow += ""; + else + newRow += "" + branch + ""; let build_state = rowData.state.toUpperCase(); if (build_state == "PASS") newRow += "" + rowData.state.toUpperCase() + "";