fix waypoint default sym value

This commit is contained in:
vcoppe
2025-11-27 08:01:05 +01:00
parent 467cb2e589
commit 69b018022d
2 changed files with 13 additions and 7 deletions

View File

@@ -95,7 +95,7 @@
desc: description.length > 0 ? description : undefined,
cmt: description.length > 0 ? description : undefined,
link: link.length > 0 ? { attributes: { href: link } } : undefined,
sym: sym,
sym: sym.length > 0 ? sym : undefined,
},
selectedWaypoint.wpt && selectedWaypoint.fileId
? new ListWaypointItem(selectedWaypoint.fileId, selectedWaypoint.wpt._data.index)