From 55bf9196dc4beebb9126b066af935ace9732e13d Mon Sep 17 00:00:00 2001 From: zhsama Date: Tue, 21 Oct 2025 18:56:16 +0800 Subject: [PATCH] feat(trigger): add TriggerSchedule to node type checks for workflow execution --- web/app/components/workflow/utils/workflow.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app/components/workflow/utils/workflow.ts b/web/app/components/workflow/utils/workflow.ts index 4aaf6f1011..14b1eb87d5 100644 --- a/web/app/components/workflow/utils/workflow.ts +++ b/web/app/components/workflow/utils/workflow.ts @@ -34,6 +34,7 @@ export const canRunBySingle = (nodeType: BlockEnum, isChildNode: boolean) => { || nodeType === BlockEnum.VariableAggregator || nodeType === BlockEnum.Assigner || nodeType === BlockEnum.DataSource + || nodeType === BlockEnum.TriggerSchedule || nodeType === BlockEnum.TriggerWebhook || nodeType === BlockEnum.TriggerPlugin }