From 718ee9abcf6d87f48fa25bc8c5867f4eca111a9e Mon Sep 17 00:00:00 2001 From: yarnom Date: Tue, 9 Sep 2025 16:02:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();