bugfix:条件式の関連修正

This commit is contained in:
xiaozhe.ma
2024-08-02 10:03:55 +09:00
parent 24fca834e0
commit bf4ddba490
3 changed files with 97 additions and 18 deletions

View File

@@ -42,13 +42,10 @@ export class ErrorShowAction implements IAction {
}
this.props = actionNode.ActionValue as IErrorShowProps;
const conditionResult = this.getConditionResult(context);
console.log("条件結果:",conditionResult);
if (conditionResult) {
event.error = this.props.message;
} else {
result = {
canNext: false,
result: true
}
result.canNext=false;
}
return result;
} catch (error) {