monitoring: Fix missing load more link when there's a single row
This commit is contained in:
parent
2979ad1da0
commit
8ec0c40f21
|
@ -115,7 +115,7 @@ foreach ($pivotData as $serviceDescription => $_) {
|
|||
'data-base-target' => '_self'
|
||||
)
|
||||
) ?>
|
||||
<?= ++$i === (int) (count($pivotHeader['rows']) / 2) ? $expandLink : '' ?>
|
||||
<?= ++$i === (int) ceil(count($pivotHeader['rows']) / 2) ? $expandLink : '' ?>
|
||||
</td>
|
||||
<?php endif ?>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue