fix(场景自动化): 修复步骤与环境设置不匹配的问题

This commit is contained in:
shiziyuan9527 2021-03-24 14:13:47 +08:00
parent c99e59a044
commit 792a5afa7d
2 changed files with 2 additions and 2 deletions

View File

@ -585,7 +585,7 @@
arr[i].projectId = scenarioProjectId ? scenarioProjectId : this.projectId;
}
if (arr[i].hashTree != undefined && arr[i].hashTree.length > 0) {
this.recursiveSorting(arr[i].hashTree);
this.recursiveSorting(arr[i].hashTree, arr[i].projectId);
}
// debug
if (this.debugResult && this.debugResult.get(arr[i].id)) {

View File

@ -500,7 +500,7 @@
arr[i].projectId = scenarioProjectId ? scenarioProjectId : this.projectId;
}
if (arr[i].hashTree != undefined && arr[i].hashTree.length > 0) {
this.recursiveSorting(arr[i].hashTree);
this.recursiveSorting(arr[i].hashTree, arr[i].projectId);
}
// debug
if (this.debugResult && this.debugResult.get(arr[i].id)) {