* Fix stage-task tree list bug.

This commit is contained in:
孙广明
2022-07-14 13:29:23 +08:00
parent a7bbc6c953
commit 083ebb7f29
3 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -4327,13 +4327,13 @@ class executionModel extends model
}
else
{
$trClass = 'is-nest-child';
$trClass = 'table-nest-hide';
$trAttrs = "data-id={$execution->id} data-parent={$execution->parent}";
$trAttrs .= " data-nest-parent='$execution->parent' data-order='$execution->order' data-nest-path=',$execution->parent,$execution->id,'";
}
$burns = join(',', $execution->burns);
echo "<tr $trAttrs class=$trClass>";
echo "<tr $trAttrs class='$trClass'>";
echo "<td><span id=$execution->id class='table-nest-icon icon table-nest-toggle'></span>";
if($this->config->systemMode == 'new')
{