From 50778798861553c7f56d2aff005d185bdc0870c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=9E=E6=B3=95=E6=93=8D=E4=BD=9C?= Date: Tue, 10 Feb 2026 18:03:52 +0800 Subject: [PATCH] chore: allow draft run single node without connect to other node (#31977) --- .../_base/components/workflow-panel/last-run/use-last-run.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/app/components/workflow/nodes/_base/components/workflow-panel/last-run/use-last-run.ts b/web/app/components/workflow/nodes/_base/components/workflow-panel/last-run/use-last-run.ts index dcbf392a8f..bf8649111d 100644 --- a/web/app/components/workflow/nodes/_base/components/workflow-panel/last-run/use-last-run.ts +++ b/web/app/components/workflow/nodes/_base/components/workflow-panel/last-run/use-last-run.ts @@ -159,6 +159,9 @@ const useLastRun = ({ if (!warningForNode) return false + if (warningForNode.unConnected && !warningForNode.errorMessage) + return false + const message = warningForNode.errorMessage || 'This node has unresolved checklist issues' Toast.notify({ type: 'error', message }) return true