* Add space to execution list.

This commit is contained in:
孙广明
2022-07-13 08:51:09 +08:00
parent 105ac0b70f
commit 032f5e963a
+2 -2
View File
@@ -4335,10 +4335,10 @@ class executionModel extends model
$burns = join(',', $execution->burns);
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')
if($this->config->systemMode == 'new')
{
$spanClass = $execution->type == 'stage' ? 'label-warning' : 'label-info';
echo "<span class='project-type-label label label-outline $spanClass'>{$this->lang->execution->typeList[$execution->type]}</span>";
echo "<span class='project-type-label label label-outline $spanClass'>{$this->lang->execution->typeList[$execution->type]}</span> ";
}
echo html::a(helper::createLink('execution', 'view', "executionID=$execution->id"), $execution->name);
echo '<td>' . zget($users, $execution->PM) . '</td>';