mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 15:54:03 +02:00
Remove superfluous <br /> after state pending in the hosts overview
This commit is contained in:
parent
19cae4b751
commit
291c6bf167
@ -80,13 +80,14 @@ if ($hosts->count() === 0) {
|
|||||||
<tr class="state <?= $hostStateName ?><?= $host->host_handled ? ' handled' : '' ?>">
|
<tr class="state <?= $hostStateName ?><?= $host->host_handled ? ' handled' : '' ?>">
|
||||||
<!-- State -->
|
<!-- State -->
|
||||||
<td class="state">
|
<td class="state">
|
||||||
<strong><?= Host::getStateText($host->host_state, true); ?></strong><br />
|
<strong><?= Host::getStateText($host->host_state, true); ?></strong>
|
||||||
<?php if ((int) $host->host_state !== 99): ?>
|
<?php if ((int) $host->host_state !== 99): ?>
|
||||||
<?= $this->timeSince($host->host_last_state_change) ?>
|
<br />
|
||||||
<?php if ($host->host_state > 0 && (int) $host->host_state_type === 0): ?>
|
<?= $this->timeSince($host->host_last_state_change) ?>
|
||||||
<br />
|
<?php if ((int) $host->host_state > 0 && (int) $host->host_state_type === 0): ?>
|
||||||
<strong>Soft <?= $host->host_attempt ?></strong>
|
<br />
|
||||||
<?php endif ?>
|
<strong>Soft <?= $host->host_attempt ?></strong>
|
||||||
|
<?php endif ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user