diff --git a/scripts/parse-maps.js b/scripts/parse-maps.js index c029690..43c3bb9 100644 --- a/scripts/parse-maps.js +++ b/scripts/parse-maps.js @@ -48,7 +48,7 @@ fs.readdirSync(inputDir).forEach((file) => { routeId: content.routeId || null, routeStart: content.routeStart || null, routeEnd: content.routeEnd || null, - created: content.created || null, + updated: content.updated || null, checked: content.checked || null, contents: Array.from(contentSet) }); diff --git a/src/lib/components/mapIcons/RouteEndLink.svelte b/src/lib/components/mapIcons/RouteEndLink.svelte index e4f6d69..8b8df6b 100644 --- a/src/lib/components/mapIcons/RouteEndLink.svelte +++ b/src/lib/components/mapIcons/RouteEndLink.svelte @@ -2,11 +2,12 @@ export let feature: { routeName: string; routeId: string; + entryPoint: string; };