From dc9a45a62a58c91d86867de44c877dab9ecc8ec1 Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Thu, 8 Jan 2026 20:50:05 +0100 Subject: [PATCH] Update position history date format to ISO 8601 --- src/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index a026ff9..fb93514 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3730,7 +3730,7 @@ } tooltip += `
[${escapeString(node.short_name)}] ${escapeString(node.long_name)}`; tooltip += `
${positionHistory.latitude}, ${positionHistory.longitude}`; - tooltip += `
Heard on: ${moment(new Date(positionHistory.created_at)).format("DD/MM/YYYY hh:mm A")}`; + tooltip += `
Heard on: ${moment(new Date(positionHistory.created_at)).format("YYYY-MM-DD HH:mm")}`; // add gateway info if available if(positionHistory.gateway_id){