条件式のバッグ修正

This commit is contained in:
2024-04-18 18:55:59 +09:00
parent ecb90e7120
commit 99d3a01991
3 changed files with 4 additions and 3 deletions

View File

@@ -334,7 +334,7 @@ export class ConditionTree {
return fieldValue.value;
}
}else if(object.objectType==='variable'){
return context.variables[object.varName].value;
return context.variables[object.name].value;
}
}