Move notifications up to avoid breaks between related dashlets

refs #6144
This commit is contained in:
Matthias Jentsch 2015-08-27 17:15:15 +02:00
parent 39513587d9
commit fa93b7e372
1 changed files with 4 additions and 5 deletions

View File

@ -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'
);