mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
monitoring: Fix sorting by 'End Time' in the downtimes overview
This commit is contained in:
parent
7ff1948c1a
commit
cd03c2164a
@ -292,15 +292,15 @@ class Monitoring_ListController extends Controller
|
|||||||
$this->filterQuery($query);
|
$this->filterQuery($query);
|
||||||
|
|
||||||
$this->setupSortControl(array(
|
$this->setupSortControl(array(
|
||||||
'downtime_is_in_effect' => $this->translate('Is In Effect'),
|
'downtime_is_in_effect' => $this->translate('Is In Effect'),
|
||||||
'downtime_host' => $this->translate('Host / Service'),
|
'downtime_host' => $this->translate('Host / Service'),
|
||||||
'downtime_entry_time' => $this->translate('Entry Time'),
|
'downtime_entry_time' => $this->translate('Entry Time'),
|
||||||
'downtime_author' => $this->translate('Author'),
|
'downtime_author' => $this->translate('Author'),
|
||||||
'downtime_start' => $this->translate('Start Time'),
|
'downtime_start' => $this->translate('Start Time'),
|
||||||
'downtime_start' => $this->translate('End Time'),
|
'downtime_end' => $this->translate('End Time'),
|
||||||
'downtime_scheduled_start' => $this->translate('Scheduled Start'),
|
'downtime_scheduled_start' => $this->translate('Scheduled Start'),
|
||||||
'downtime_scheduled_end' => $this->translate('Scheduled End'),
|
'downtime_scheduled_end' => $this->translate('Scheduled End'),
|
||||||
'downtime_duration' => $this->translate('Duration'),
|
'downtime_duration' => $this->translate('Duration')
|
||||||
));
|
));
|
||||||
|
|
||||||
$this->view->downtimes = $query->paginate();
|
$this->view->downtimes = $query->paginate();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user