Skip to content

Commit

Permalink
fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
beru committed Dec 19, 2024
1 parent 3b834dd commit 980dac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/dagre.js
Original file line number Diff line number Diff line change
Expand Up @@ -1402,8 +1402,8 @@ dagre.layout = (nodes, edges, layout, state) => {
|| n1.in.length !== 1
|| n0.out.length !== 1
|| n1.out.length !== 1
|| n0.in[0].vNode.in.length == 0
|| n1.in[0].vNode.in.length == 0
|| n0.in[0].vNode.in.length === 0
|| n1.in[0].vNode.in.length === 0
) {
if (dirTotal === 3) {
{
Expand Down

0 comments on commit 980dac6

Please sign in to comment.