schedule bug fix

This commit is contained in:
Sundog Jones 2024-09-03 16:33:34 -04:00
parent fd29869e29
commit a2332d1b1d

View File

@ -658,7 +658,7 @@
const header_selector = "#header_" + i;
const header_cell = document.querySelector(header_selector);
header_cell.innerHTML = current_day.toDateString();
current_day.setDate(current_day.getDate() + 1);_
current_day.setDate(current_day.getDate() + 1);
}
}