monitoring/detail: Hide last check counter if the service is pending
This commit is contained in:
parent
7a7214d626
commit
3401d09b59
|
@ -20,7 +20,9 @@ if ($object->getType() === $object::TYPE_HOST) {
|
||||||
<?php if (isset($checkNowForm)) { // Form is unset if the current user lacks the respective permission
|
<?php if (isset($checkNowForm)) { // Form is unset if the current user lacks the respective permission
|
||||||
echo $checkNowForm;
|
echo $checkNowForm;
|
||||||
} ?>
|
} ?>
|
||||||
<?= $this->timeAgo($object->last_check) ?>
|
<?php if ((int) $object->state !== 99) {
|
||||||
|
echo $this->timeUntil($object->last_check);
|
||||||
|
} ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in New Issue