Merged PR 72: bugfix:条件式の関連修正

下記条件式関連を修正しました
1.ユーザー、組織などのオブジェクト比較
2.配列値の比較(チェックボックス、複数値選択、ユーザー選択など)

Related work items: #511, #512, #513, #541, #543
This commit is contained in:
Shohtetsu Ma
2024-08-02 02:51:53 +00:00
committed by Takuto Yoshida(タクト)
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) {