Move notifications up to avoid breaks between related dashlets
refs #6144
This commit is contained in:
parent
39513587d9
commit
fa93b7e372
|
@ -308,6 +308,10 @@ $dashboard->add(
|
|||
$this->translate('Hard State Changed'),
|
||||
'monitoring/list/eventhistory?type=hard_state&sort=timestamp&dir=desc&limit=8'
|
||||
);
|
||||
$dashboard->add(
|
||||
$this->translate('Notifications'),
|
||||
'monitoring/list/eventhistory?type=notify&sort=timestamp&dir=desc&limit=8'
|
||||
);
|
||||
$dashboard->add(
|
||||
$this->translate('Downtimes Started'),
|
||||
'monitoring/list/eventhistory?type=dt_start&sort=timestamp&dir=desc&limit=8'
|
||||
|
@ -316,8 +320,3 @@ $dashboard->add(
|
|||
$this->translate('Downtimes Ended'),
|
||||
'monitoring/list/eventhistory?type=dt_end&sort=timestamp&dir=desc&limit=8'
|
||||
);
|
||||
$dashboard->add(
|
||||
$this->translate('Notifications'),
|
||||
'monitoring/list/eventhistory?type=notify&sort=timestamp&dir=desc&limit=8'
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue