Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix eslint errors
Browse files Browse the repository at this point in the history
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
@@ -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) {
{

0 comments on commit 980dac6

Please sign in to comment.