diff --git a/airflow/www/static/js/dag_dependencies.js b/airflow/www/static/js/dag_dependencies.js index 02f83f67c7337..4e342288efcd9 100644 --- a/airflow/www/static/js/dag_dependencies.js +++ b/airflow/www/static/js/dag_dependencies.js @@ -200,7 +200,10 @@ const renderGraph = () => { // Set edges edges.forEach((edge) => { - g.setEdge(edge.u, edge.v); + g.setEdge(edge.u, edge.v, { + curve: d3.curveBasis, + arrowheadClass: 'arrowhead', + }); }); innerSvg.call(render, g);