Skip to content

Commit

Permalink
monitoring: Fix CSS class for handled in the service header partial
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 29, 2015
1 parent 29e66c3 commit 4ffd09f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@ use Icinga\Module\Monitoring\Object\Service;
</td>
</tr>
<tr>
<td class="state-col state-<?= Service::getStateText($object->service_state) ?><?= $object->service_handled ? '-handled' : '' ?>">
<td class="state-col state-<?= Service::getStateText($object->service_state) ?><?= $object->service_handled ? ' handled' : '' ?>">
<p>
<?= Service::getStateText($object->service_state, true) ?>
<br>
Expand Down

0 comments on commit 4ffd09f

Please sign in to comment.