diff --git a/index.html b/index.html index 9ac26860..885cf007 100644 --- a/index.html +++ b/index.html @@ -8151,7 +8151,7 @@ - + diff --git a/modules/ui/markers-overview.js b/modules/ui/markers-overview.js index 2f47e2e1..02999eb0 100644 --- a/modules/ui/markers-overview.js +++ b/modules/ui/markers-overview.js @@ -215,7 +215,7 @@ function overviewMarkers() { const body = pack.markers.map(marker => { const {i, type, icon, x, y} = marker; - const note = notes.find(note => note.id === i); + const note = notes.find(note => note.id === "marker" + i); const name = note ? quote(note.name) : "Unknown"; const legend = note ? quote(note.legend) : ""; diff --git a/versioning.js b/versioning.js index 99ab5235..4d5659de 100644 --- a/versioning.js +++ b/versioning.js @@ -13,7 +13,7 @@ * Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2 */ -const VERSION = "1.108.9"; +const VERSION = "1.108.10"; if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function"); {