条件アクションの障害修正

This commit is contained in:
2024-03-26 17:08:26 +09:00
parent 44a73478a7
commit 4c482ea289
4 changed files with 9 additions and 9 deletions

View File

@@ -157,19 +157,19 @@ export class ActionNode implements IActionNode {
prevNodeId?: string;
nextNodeIds: Map<string, string>;
constructor(
{id,name,title,inputPoint,outputPoint,actionProps}:
{id,name,title,inputPoint,outputPoints,actionProps}:
{
id:string,
name: string,
title: string,
inputPoint: string,
outputPoint: Array<string>,
outputPoints: Array<string>,
actionProps: Array<IActionProperty>}
) {
this.id=id;
this.name = name;
this.inputPoint = inputPoint;
this.outputPoints = outputPoint;
this.outputPoints = outputPoints;
const defProp = ActionProperty.defaultProperty();
defProp.props.modelValue = title;
this.actionProps = actionProps;