Skip to content

Commit

Permalink
#4861 - added validation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil-sloboda authored and rrodionov91 committed Sep 2, 2024
1 parent 9c25870 commit a1f50bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class MultitailArrow extends BaseMicromoleculeEntity {
const result = tailsPositions.every((tail, index, allTails) => {
if (
index > 0 &&
allTails[index - 1].y < tail.y - MultitailArrow.MIN_TAIL_DISTANCE
allTails[index - 1].y < tail.y + MultitailArrow.MIN_TAIL_DISTANCE
) {
return false;
}
Expand Down

0 comments on commit a1f50bb

Please sign in to comment.