From 4ce1c02d5e74eb4ea4d2cf22255b332e0db7a28b Mon Sep 17 00:00:00 2001 From: Sundog Date: Mon, 9 Sep 2024 15:12:57 -0400 Subject: [PATCH] reset schedule grid on day change --- layout.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layout.html b/layout.html index 0160e15..2480195 100644 --- a/layout.html +++ b/layout.html @@ -643,6 +643,7 @@ const template = document.querySelector("#schedule_header_row_template"); const template_clone = template.content.cloneNode(true); const grid = document.querySelector("#schedule_grid"); + grid.innerHTML = ``; grid.appendChild(template_clone); for (var i = 0; i < 24 * 2; i++) {