This commit is contained in:
AykutSarac 2022-04-30 15:56:49 +03:00
parent 93f6677ce6
commit 0774d5c98d

View File

@ -32,7 +32,7 @@ export function getEdgeNodes(graph: any, isExpanded: boolean = true): any {
.sort((a, b) => a - b);
const longestLine = lineLengths.reverse()[0];
const height = (lines.length * 18 < 30 ? 40 : lines.length * 18);
const height = lines.length * 18 < 30 ? 40 : lines.length * 18;
nodes.push({
id: el.id,