schedule bug fix

This commit is contained in:
Sundog Jones 2024-09-03 16:34:59 -04:00
parent a2332d1b1d
commit 8cbcb14831
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}