fix: make graph algorithm

This commit is contained in:
IlyaDoronin 2023-10-27 16:03:06 +03:00
parent 012381a7ab
commit bb783cb6b8

@ -34,7 +34,7 @@ const getCurrentIndent = (
if (!subIndent) {
currentIndent += point.edges.length * 100;
} else {
bottomIndent += point.edges.length * 100;
bottomIndent += (point.edges.length - 1) * 200;
}
point.edges.forEach((edge) => {