From 6d61ae483a24a04f15a0adf2e8b7cccd3a0adffc Mon Sep 17 00:00:00 2001 From: Sundog Date: Mon, 9 Sep 2024 13:06:06 -0400 Subject: [PATCH] schedule grid layout --- layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.html b/layout.html index ff71314..eb19c55 100644 --- a/layout.html +++ b/layout.html @@ -651,7 +651,7 @@ const template = document.querySelector("#schedule_row_template"); const template_clone = template.content.cloneNode(true); const grid = document.querySelector("#schedule_grid"); - template_clone.firstElementChild.innerHTML = `${hour.toString().padStart(2, "0")}:${minutes.toString().padStart(2, "0")}`; + template_clone.firstElementChild.innerHTML = `${hour.toString().padStart(2, "0")}:${minutes.toString().padStart(2, "0")}`; template_clone.firstElementChild.setAttribute('data-time', hour + ":" + minutes); grid.appendChild(template_clone); }