Fix first and last shotpoint times in map tooltip

This commit is contained in:
D. Berge
2025-07-28 11:01:38 +02:00
parent f092aff015
commit 3413641c10

View File

@@ -1205,8 +1205,8 @@ export default {
html += `${p.num_points} points (${p.missing_shots ? (p.missing_shots + " missing") : "None missing"})<br/>\n`;
html+= `${(p.length??0).toFixed(0)} m ${(p.azimuth??0).toFixed(1)}°<br/>\n`;
html += `${p.duration}<br/>\n`;
html += `<b>${p.fsp}</b> @ ${p.ts0?.substring(0, 10)}<br/>\n`;
html += `<b>${p.lsp}</b> @ ${p.ts1?.substring(0, 10)}<br/>\n`;
html += `<b>${p.fsp}</b> @ ${p.ts0}<br/>\n`;
html += `<b>${p.lsp}</b> @ ${p.ts1}<br/>\n`;
if (p.ntbp) {
html += "<b>Not to be processed</b><br/>\n";
} else if (p.pending) {