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

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

File diff suppressed because one or more lines are too long

View File

@@ -13,7 +13,7 @@ API_V1_AUTH_KEY = "X-Cybozu-Authorization"
DEPLOY_MODE = "DEV" #DEV,PROD
DEPLOY_JS_URL = "https://ka-addin.azurewebsites.net/alc_runtime.js"
#DEPLOY_JS_URL = "https://b9c9-133-139-70-187.ngrok-free.app/alc_runtime.js"
#DEPLOY_JS_URL = "https://e84c-133-139-70-142.ngrok-free.app/alc_runtime.js"
KINTONE_FIELD_TYPE=["GROUP","GROUP_SELECT","CHECK_BOX","SUBTABLE","DROP_DOWN","USER_SELECT","RADIO_BUTTON","RICH_TEXT","LINK","REFERENCE_TABLE","CALC","TIME","NUMBER","ORGANIZATION_SELECT","FILE","DATETIME","DATE","MULTI_SELECT","SINGLE_LINE_TEXT","MULTI_LINE_TEXT"]

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;