* fix bug for border when no data.

This commit is contained in:
wangyidong
2016-05-24 11:56:34 +08:00
parent 3b829cbc2e
commit 69acd19391
5 changed files with 15 additions and 5 deletions
+2
View File
@@ -37,6 +37,7 @@
<th class='w-150px {sorter:false}'><?php echo $lang->actions;?></th>
</tr>
</thead>
<?php if($tasks):?>
<tbody>
<?php foreach($tasks as $task):?>
<?php $class = $task->assignedTo == $app->user->account ? 'style=color:red' : ''; ?>
@@ -106,3 +107,4 @@
</tr>
<?php endforeach;?>
</tbody>
<?php endif?>