From 1bce70e3f576efc2386eeb274d69d21831ffa058 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Wed, 17 Jul 2019 13:55:56 -0400 Subject: [PATCH] Update directional arrow styling when switching between directional presets (close #6032) --- modules/svg/lines.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/svg/lines.js b/modules/svg/lines.js index b8ab3ed15..1e1d36052 100644 --- a/modules/svg/lines.js +++ b/modules/svg/lines.js @@ -171,8 +171,8 @@ export function svgLines(projection, context) { markers = markers.enter() .append('path') .attr('class', pathclass) - .attr('marker-mid', marker) .merge(markers) + .attr('marker-mid', marker) .attr('d', function(d) { return d.d; }); if (detected.ie) {