Skip to content

Commit

Permalink
#1123 revert arrow length change
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmartin committed May 11, 2021
1 parent a0104f4 commit 0bf4ed3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0bf4ed3

Please sign in to comment.