Skip to content

Commit

Permalink
fix compare models not connecting from output menu selection (#6096)
Browse files Browse the repository at this point in the history
  • Loading branch information
mloppie authored Jan 16, 2025
1 parent dcac6f0 commit 6f445d8
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,12 +506,6 @@ async function onMenuSelection(operatorType: string, menuNode: WorkflowNode<any>
}
});
// Will not connect nodes if there is anything besides 1 match
if (inputPorts.length !== 1) {
console.warn(`Ambiguous matching types [${newNode.inputs}] to [${port}]`);
return;
}
const edgePayload: WorkflowEdge = {
id: uuidv4(),
workflowId: wf.value.getId(),
Expand Down

0 comments on commit 6f445d8

Please sign in to comment.