We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 725a567 commit 6bd7a09Copy full SHA for 6bd7a09
packages/cli/src/Server.ts
@@ -2880,5 +2880,7 @@ const isTrigger = (nodeType: string) =>
2880
function findFirstPinnedTrigger(workflow: IWorkflowDb, pinData?: IPinData) {
2881
if (!pinData) return;
2882
2883
- return workflow.nodes.find((node) => isTrigger(node.type) && pinData[node.name]);
+ return workflow.nodes.find(
2884
+ (node) => !node.disabled && isTrigger(node.type) && pinData[node.name],
2885
+ );
2886
}
0 commit comments