* Fix bug.

This commit is contained in:
滔哥
2018-01-17 12:23:58 +08:00
parent 402975b444
commit a57e30ced7
7 changed files with 14 additions and 28 deletions
+3 -3
View File
@@ -17,7 +17,7 @@
<table class='table table-fixed' id='treetable'>
<thead>
<tr>
<th class='w-50px'></th>
<th class='w-<?php echo $groupBy == 'story' ? '50' : '100';?>px'></th>
<th><?php echo $lang->testcase->title;?></th>
<th class='w-pri'> <?php echo $lang->priAB;?></th>
<th class='w-80px'> <?php echo $lang->typeAB;?></th>
@@ -34,9 +34,9 @@
</thead>
<?php $i = 0;?>
<?php foreach($cases as $groupKey => $groupCases):?>
<?php $groupClass = ($i % 2 == 0) ? 'even' : 'highlight-warning'; $i ++;?>
<?php $groupClass = ($i % 2 == 0) ? 'even' : 'highlight-warning'; $i++;?>
<tr id='node-<?php echo $groupKey;?>' class='actie-disabled group-title'>
<td class='text-right <?php echo $groupClass;?> text-left large strong group-name'><?php echo $groupKey;?></td>
<td class='text-right <?php echo $groupClass;?> large strong group-name'><?php echo $groupKey;?></td>
<td colspan='12' class='text-left'><?php if($groupByList) echo $groupByList[$groupKey];?></td>
</tr>
<?php foreach($groupCases as $run):?>