HostController: Open a host's service in the current column
This commit is contained in:
parent
3caa5b428a
commit
0d32b94eaa
|
@ -12,6 +12,7 @@
|
|||
'compact' => true,
|
||||
'showHost' => false,
|
||||
'services' => $services,
|
||||
'addColumns' => array()
|
||||
'addColumns' => array(),
|
||||
'baseTarget' => '_self'
|
||||
)
|
||||
); ?>
|
|
@ -25,7 +25,7 @@ if (count($services) === 0) {
|
|||
return;
|
||||
}
|
||||
?>
|
||||
<table data-base-target="_next"
|
||||
<table data-base-target="<?= isset($baseTarget) ? $baseTarget : '_next'; ?>"
|
||||
class="action multiselect <?php if ($this->compact): ?> compact<?php endif ?>" style="table-layout: auto;"
|
||||
data-icinga-multiselect-url="<?= $this->href("monitoring/services/show") ?>"
|
||||
data-icinga-multiselect-data="service,host">
|
||||
|
|
Loading…
Reference in New Issue