From 56338dc3a8f6a02dae0b0f038c80ef957e7a9deb Mon Sep 17 00:00:00 2001 From: dengqichen Date: Wed, 22 Oct 2025 09:58:19 +0800 Subject: [PATCH] 1 --- .../pages/Workflow/Design/nodes/NotificationNode.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/frontend/src/pages/Workflow/Design/nodes/NotificationNode.tsx b/frontend/src/pages/Workflow/Design/nodes/NotificationNode.tsx index 7d2dfe33..02ad5e41 100644 --- a/frontend/src/pages/Workflow/Design/nodes/NotificationNode.tsx +++ b/frontend/src/pages/Workflow/Design/nodes/NotificationNode.tsx @@ -28,8 +28,8 @@ export const NotificationNodeDefinition: ConfigurableNodeDefinition = { gradient: ['#ffffff', '#fef3c7'] }, handles: { - input: true, // 有输入 - output: false // 无输出 + input: true, + output: true }, features: { showBadge: true, @@ -81,12 +81,6 @@ export const NotificationNodeDefinition: ConfigurableNodeDefinition = { description: "通知消息的正文内容,支持变量表达式", format: "textarea", default: "" - }, - recipients: { - type: "string", - title: "收件人", - description: "多个收件人用逗号分隔,支持变量表达式", - default: "" } }, required: ["nodeName", "nodeCode", "notificationType", "title", "content", "recipients"]