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"]