Fix base target in problem badges
The stats view is always a main pane, so it makes sense to open the badge links in col2. refs #10033
This commit is contained in:
parent
a630869bcf
commit
8837004fca
|
@ -23,7 +23,9 @@ if (! $this->compact): ?>
|
||||||
<?=
|
<?=
|
||||||
$this->qlink(
|
$this->qlink(
|
||||||
$this->unhandledServiceProblems,
|
$this->unhandledServiceProblems,
|
||||||
'monitoring/list/services?service_problem=1&service_handled=0&sort=service_severity'
|
'monitoring/list/services?service_problem=1&service_handled=0&sort=service_severity',
|
||||||
|
null,
|
||||||
|
array('data-base-target' => '_next')
|
||||||
)
|
)
|
||||||
?>
|
?>
|
||||||
</span>
|
</span>
|
||||||
|
@ -36,7 +38,9 @@ if (! $this->compact): ?>
|
||||||
<?=
|
<?=
|
||||||
$this->qlink(
|
$this->qlink(
|
||||||
$this->unhandledhostProblems,
|
$this->unhandledhostProblems,
|
||||||
'monitoring/list/hosts?host_problem=1&host_handled=0'
|
'monitoring/list/hosts?host_problem=1&host_handled=0',
|
||||||
|
null,
|
||||||
|
array('data-base-target' => '_next')
|
||||||
)
|
)
|
||||||
?>
|
?>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue