From 545cd4a44d7b6b5eeb125aed719f89f0a7833caf Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 23 Sep 2016 12:00:21 -0400 Subject: [PATCH] Fix oneways --- 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 358a2d804..76f3511c0 100644 --- a/modules/svg/lines.js +++ b/modules/svg/lines.js @@ -115,7 +115,7 @@ export function Lines(projection) { .selectAll('path') .filter(filter) .data( - function() { return onewaydata[this.parentNode.parentNode.__data__] || []; }, + function() { return onewaydata[this.parentNode.__data__] || []; }, function(d) { return [d.id, d.index]; } );