Skip to content

Commit

Permalink
fix: edges not being connected due to missing handles
Browse files Browse the repository at this point in the history
  • Loading branch information
Elscrux committed Aug 10, 2024
1 parent cb334e1 commit d842ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/solvers/Graph/ProblemNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function getNodeType(data: ProblemNodeData): {

let bottomHandle =
data.problemDtos[0].solverId === undefined ||
data.problemDtos.every((dto) => canProblemSolverBeUpdated(dto));
data.problemDtos.some((dto) => !canProblemSolverBeUpdated(dto));

return {
topHandle: topHandle,
Expand Down

0 comments on commit d842ca7

Please sign in to comment.