From fca58e9159d7e1f44e5c0c5594597b5f1f31ef59 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Sun, 26 Oct 2025 00:19:36 -0300 Subject: [PATCH] Minor change to build date conversion --- builds.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/builds.md b/builds.md index 3dc1fc7..59967f3 100644 --- a/builds.md +++ b/builds.md @@ -352,11 +352,9 @@ function listBuild(data) { break; } var ts = new Date(data['timestamp']); - var started; + var started = ts.toString(); if (ts.toDateString && ts.toTimeString) started = ts.toDateString() + ' ' + ts.toTimeString().replace(/ \([^\)]+\)/g, ''); - else - started = ts.toString(); p.appendChild(document.createTextNode('Started ' + started + (cause || ''))); p.appendChild(document.createElement('br')); p.appendChild(document.createTextNode('More information on the '));