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() + "";