From ebab6958784078c4754a76e87dd48cce6e411e02 Mon Sep 17 00:00:00 2001 From: CaedenPH Date: Fri, 23 Aug 2024 18:31:53 +0100 Subject: [PATCH] fix: Convert to ms by diving by 1000 instead of 60 --- src/routes/results.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/results.ts b/src/routes/results.ts index 2175a46..0236fdb 100644 --- a/src/routes/results.ts +++ b/src/routes/results.ts @@ -228,7 +228,7 @@ export class ProcessResultsPage { Date/time: ${data._date} Location: ${data.location.normalizedLocation} Status: ${data.status} - Test duration: ${data.testDuration/60}s`, { + Test duration: ${data.testDuration/1000}s`, { fontFamily: "Trebuchet", fontSize: 18, fill: 0xffffff,