From fa93b7e37267a42bbe39f1bcb1233b48611d311a Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Thu, 27 Aug 2015 17:15:15 +0200 Subject: [PATCH] Move notifications up to avoid breaks between related dashlets refs #6144 --- modules/monitoring/configuration.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/monitoring/configuration.php b/modules/monitoring/configuration.php index d7f263e5c..8740575ba 100644 --- a/modules/monitoring/configuration.php +++ b/modules/monitoring/configuration.php @@ -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' -); -