We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf4837 commit 79b8458Copy full SHA for 79b8458
src/components/other/arrow.tsx
@@ -94,11 +94,9 @@ const drownPathAndTriangle = (
94
return `M ${taskFrom.x1} ${taskFrom.y + taskHeight / 2}
95
h ${-arrowIndent}
96
v ${(indexCompare * rowHeight) / 2}
97
- ${taskFromEndPosition > taskTo.x2 + arrowIndent + 10 ? "" : `H ${taskTo.x2 + arrowIndent}`}
+ H ${taskTo.x2 + arrowIndent}
98
V ${taskToEndPosition}
99
- h ${taskFromEndPosition < taskTo.x2
100
- ? -arrowIndent
101
- : taskTo.x2 - taskFrom.x1 - arrowIndent}`;
+ h ${-arrowIndent}`;
102
}
103
104
const endToEndPath = () => {
0 commit comments