From ededf454a04bfbeef6837d1644d014c900c2b03a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 20 Nov 2021 13:11:24 +0100 Subject: [PATCH] Fix builds row class --- src/runboat/webui/builds.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runboat/webui/builds.html b/src/runboat/webui/builds.html index bc166c6..92e6480 100644 --- a/src/runboat/webui/builds.html +++ b/src/runboat/webui/builds.html @@ -39,7 +39,7 @@ var rowElement = document.getElementById(rowId); if (!rowElement) { rowElement = document.createElement("div"); - rowElement.class = "row"; + rowElement.classList.add("row"); rowElement.id = rowId; document.getElementById("builds").appendChild(rowElement); }