From fc1308e27ef02c656140465990ff56e539fb0bb6 Mon Sep 17 00:00:00 2001 From: Ku6epXBOCTuK Date: Mon, 7 Sep 2026 01:57:01 +0500 Subject: [PATCH] fix: update response wait timer --- src/pages/dashboard.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/dashboard.astro b/src/pages/dashboard.astro index 3af6190..d40f21a 100644 --- a/src/pages/dashboard.astro +++ b/src/pages/dashboard.astro @@ -112,6 +112,7 @@ const base = import.meta.env.BASE_URL.replace(/\/+$/, ""); AUTHOR, EVENTS, CREATED, + CREATED_MS, LAST_AUTHOR_MS, LAST_AUTHOR_EVENT, fmtClock, @@ -152,7 +153,7 @@ const base = import.meta.env.BASE_URL.replace(/\/+$/, ""); const responseWait = document.querySelector("#metric-response-wait"); if (elapsed) elapsed.textContent = fmtElapsed(now); if (lastActivity) lastActivity.textContent = fmtDaysHours(now, LAST_AUTHOR_MS); - if (responseWait) responseWait.textContent = fmtDaysHours(now, LAST_AUTHOR_MS); + if (responseWait) responseWait.textContent = fmtDaysHours(now, CREATED_MS); } function tick(): void {