diff --git a/src/js/map/map.js b/src/js/map/map.js index 827810d..dc89045 100644 --- a/src/js/map/map.js +++ b/src/js/map/map.js @@ -380,6 +380,11 @@ Stop and start the development process in terminal after you have added your tok .exit() .remove(); + if (app.narrative !== null) { + d3.selectAll('#arrow path') + .style('fill', getNarrativeStyle(app.narrative.id).stroke); + } + const getMarker = (d) => { if (!d || app.narrative === null) return 'none'; if (d.id !== app.narrative.id) return 'url(#arrow-off)';