Fix show all services links in the servicegroup overview
Before, the forced servicegroup_name paramemter may interfere with an existing servicegroup_name filter.
This commit is contained in:
parent
58e3ae46a7
commit
bee5099a08
|
@ -38,9 +38,12 @@ if (! $this->compact): ?>
|
|||
<th>
|
||||
<?= $this->qlink(
|
||||
$serviceGroup->servicegroup_alias,
|
||||
$this->url('monitoring/list/services')->addFilter($this->filterEditor->getFilter()),
|
||||
array('servicegroup_name' => $serviceGroup->servicegroup_name, 'sort' => 'service_severity'),
|
||||
array('title' => sprintf($this->translate('List all services in the group "%s"'), $serviceGroup->servicegroup_alias))
|
||||
$this
|
||||
->url('monitoring/list/services')
|
||||
->setParams(['servicegroup_name' => $serviceGroup->servicegroup_name])
|
||||
->addFilter($this->filterEditor->getFilter()),
|
||||
['sort' => 'service_severity'],
|
||||
['title' => sprintf($this->translate('List all services in the group "%s"'), $serviceGroup->servicegroup_alias)]
|
||||
) ?>
|
||||
</th>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue