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.
2 parents 56ecf42 + 79b8458 commit d4d1668Copy full SHA for d4d1668
src/components/other/arrow.tsx
@@ -109,11 +109,9 @@ const drownPathAndTriangle = (
109
return `M ${taskFrom.x1} ${taskFrom.y + taskHeight / 2}
110
h ${-arrowIndent}
111
v ${(indexCompare * rowHeight) / 2}
112
- ${taskFromEndPosition > taskTo.x2 + arrowIndent + 10 ? "" : `H ${taskTo.x2 + arrowIndent}`}
+ H ${taskTo.x2 + arrowIndent}
113
V ${taskToEndPosition}
114
- h ${taskFromEndPosition < taskTo.x2
115
- ? -arrowIndent
116
- : taskTo.x2 - taskFrom.x1 - arrowIndent}`;
+ h ${-arrowIndent}`;
117
}
118
119
const endToEndPath = () => {
0 commit comments