From 48a1d7236fd10cadf98abe66006c45a79bf99445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 20 Nov 2021 13:06:43 +0100 Subject: [PATCH] Row layout for builds.html --- src/runboat/webui/builds.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/runboat/webui/builds.html b/src/runboat/webui/builds.html index b78e2e1..bc166c6 100644 --- a/src/runboat/webui/builds.html +++ b/src/runboat/webui/builds.html @@ -1,6 +1,15 @@ Runboat builds +
@@ -30,6 +39,7 @@ var rowElement = document.getElementById(rowId); if (!rowElement) { rowElement = document.createElement("div"); + rowElement.class = "row"; rowElement.id = rowId; document.getElementById("builds").appendChild(rowElement); }