From 0bf4ed3697f97e41792d38f30ad2f16b878fb823 Mon Sep 17 00:00:00 2001 From: jrmartin Date: Tue, 11 May 2021 13:50:01 -0700 Subject: [PATCH] #1123 revert arrow length change --- components/interface/VFBCircuitBrowser/VFBCircuitBrowser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/interface/VFBCircuitBrowser/VFBCircuitBrowser.js b/components/interface/VFBCircuitBrowser/VFBCircuitBrowser.js index 55b3f4ca2..9c3579a7d 100644 --- a/components/interface/VFBCircuitBrowser/VFBCircuitBrowser.js +++ b/components/interface/VFBCircuitBrowser/VFBCircuitBrowser.js @@ -339,7 +339,7 @@ class VFBCircuitBrowser extends Component { // Width of links, log(weight) linkWidth={link => link.weight ? Math.log(link.weight) : 1 } linkCurvature={.075} - linkDirectionalArrowLength={link => link.weight ? Math.log(link.weight) * 5 : 4} + linkDirectionalArrowLength={link => link.weight ? Math.log(link.weight) * 5 : 2} linkDirectionalArrowRelPos={.75} linkCanvasObject={(link, ctx) => { const MAX_FONT_SIZE = 5;