aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--infra/ci/frontend/static/script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/ci/frontend/static/script.js b/infra/ci/frontend/static/script.js
index a2e9dc685..24591d45d 100644
--- a/infra/ci/frontend/static/script.js
+++ b/infra/ci/frontend/static/script.js
@@ -231,7 +231,7 @@ function getLastUpdate(lastUpdate) {
return lastUpdateMins + ' mins ago';
if (lastUpdateMins < 60 * 24)
return Math.ceil(lastUpdateMins / 60) + ' hours ago';
- return lastUpdate.toLocaleDateString();
+ return lastUpdate.toISOString().substr(0, 10);
}
function renderCLRow(cl) {