* Optimize code logic.

This commit is contained in:
tianshujie
2022-03-30 15:22:27 +08:00
parent b452680fb3
commit 4f4dfd990e
3 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -3428,7 +3428,11 @@ class execution extends control
foreach($executionStats as $stage)
{
$stageList[] = $stage;
foreach($stage->children as $child) $stageList[] = $child;
foreach($stage->children as $child)
{
$child->name = $stage->name . '/' . $child->name;
$stageList[] = $child;
}
}
$executionStats = $stageList;