Compare commits

...
2 Commits
Author SHA1 Message Date
Ku6epXBOCTuK 1698306717 chore: update manifest 2026-09-07 01:59:04 +05:00
Ku6epXBOCTuK fc1308e27e fix: update response wait timer 2026-09-07 01:57:01 +05:00
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
{
"name": "github-tracker",
"name": "github-support-sla-monitor",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "github-tracker",
"name": "github-support-sla-monitor",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "github-tracker",
"name": "github-support-sla-monitor",
"version": "0.1.0",
"description": "Flip-clock tracker of time elapsed since a GitHub support ticket",
"description": "GitHub support ticket sla monitor dashboard and flip-clock timer",
"scripts": {
"dev": "astro dev",
"build": "astro build",
+2 -1
View File
@@ -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<HTMLElement>("#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 {