Skip to content

Commit

Permalink
fix: comment node cannot save (#2847)
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu authored Sep 30, 2024
1 parent fadb389 commit df328b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/app/src/web/core/workflow/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ export const checkWorkflowNodeAndConnection = ({
data.flowNodeType === FlowNodeTypeEnum.systemConfig ||
data.flowNodeType === FlowNodeTypeEnum.pluginConfig ||
data.flowNodeType === FlowNodeTypeEnum.pluginInput ||
data.flowNodeType === FlowNodeTypeEnum.workflowStart
data.flowNodeType === FlowNodeTypeEnum.workflowStart ||
data.flowNodeType === FlowNodeTypeEnum.comment
) {
continue;
}
Expand Down

0 comments on commit df328b2

Please sign in to comment.