From 8cbcb14831c2f08f7eb55de3e316c250fc72c50e Mon Sep 17 00:00:00 2001 From: Sundog Date: Tue, 3 Sep 2024 16:34:59 -0400 Subject: [PATCH] schedule bug fix --- layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.html b/layout.html index 4c4182c..ff6ac41 100644 --- a/layout.html +++ b/layout.html @@ -657,7 +657,7 @@ // put date at top of appropriate column of the grid const header_selector = "#header_" + i; const header_cell = document.querySelector(header_selector); - header_cell.innerHTML = current_day.toDateString(); + //header_cell.innerHTML = current_day.toDateString(); current_day.setDate(current_day.getDate() + 1); } }