auto-sync: 2026-05-05 00:50:01

This commit is contained in:
Stream
2026-05-05 00:50:01 +03:00
parent ea5e23f4fb
commit d0b5d2b113

View File

@@ -1312,8 +1312,8 @@ function renderLinkCards(routes) {
layout: { 'line-cap': 'round', 'line-join': 'round' }
});
const km = (r.distance / 1000).toFixed(0);
const time = formatDuration(r.duration);
const km = (r.distance_m / 1000).toFixed(0);
const time = formatDuration(r.duration_s);
const dirt = r.stats?.dirt_total_pct || '?';
const col = colors[i % colors.length];
const card = document.createElement('div');