diff --git a/templates/index.html b/templates/index.html index 7238f8a..e932f7f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -279,8 +279,8 @@ function initializeDatePickers() { const now = new Date(); - const tenDaysMs = 10 * 24 * 60 * 60 * 1000; - const begin = new Date(now.getTime() - tenDaysMs); + const twoDaysMs = 2 * 24 * 60 * 60 * 1000; + const begin = new Date(now.getTime() - twoDaysMs); function fmt(dt) { const y = dt.getFullYear();