条件式のバッグ修正

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

@@ -8,7 +8,8 @@
"build": "tsc && vite build && xcopy dist\\*.js ..\\..\\backend\\Temp\\ /E /I /Y",
"build:dev":"tsc && set \"SOURCE_MAP=true\" && vite build && xcopy dist\\*.js ..\\..\\backend\\Temp\\ /E /I /Y",
"preview": "vite preview",
"ngrok":"ngrok http http://localhost:4173/"
"ngrok":"ngrok http http://localhost:4173/",
"vite":"vite dev"
},
"devDependencies": {
"@types/jquery": "^3.5.24",

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;
}
}