* Fix bug#30026.

This commit is contained in:
xieqiyu
2022-11-23 10:54:51 +08:00
parent 23e9d91bf9
commit bfafc2996d
7 changed files with 16 additions and 19 deletions
+2 -2
View File
@@ -33,12 +33,12 @@
<?php foreach($executions as $execution):?>
<?php $executionLink = $this->createLink('execution', 'view', "executionID=$execution->id");?>
<tr>
<td><?php echo html::a($executionLink, $execution->id);?></td>
<td><?php echo html::a($executionLink, $execution->id, '', "data-app='execution'");?></td>
<td>
<?php if($this->config->edition == 'max'):?>
<span class='project-type-label label label-info label-outline'><?php echo zget($lang->user->executionTypeList, $execution->type);?></span>
<?php endif;?>
<?php echo html::a($executionLink, $execution->name);?>
<?php echo html::a($executionLink, $execution->name, '', "data-app='execution'");?>
</td>
<?php if(isset($execution->delay)):?>
<td class='project-delay'><?php echo $lang->execution->delayed;?></td>