Revert "Make ascending sort by host or service severity initiatable"
This reverts commit 7e1f9f6dcc
.
This commit is contained in:
parent
7e1f9f6dcc
commit
149e893ecd
|
@ -94,11 +94,10 @@ class HostStatus extends DataView
|
|||
),
|
||||
'host_severity' => array(
|
||||
'columns' => array(
|
||||
'host_severity',
|
||||
'host_last_state_change',
|
||||
'host_severity DESC',
|
||||
'host_last_state_change DESC',
|
||||
'host_display_name ASC'
|
||||
),
|
||||
'order' => self::SORT_DESC
|
||||
)
|
||||
),
|
||||
'host_address' => array(
|
||||
'columns' => array(
|
||||
|
|
|
@ -130,21 +130,19 @@ class ServiceStatus extends DataView
|
|||
),
|
||||
'service_severity' => array(
|
||||
'columns' => array(
|
||||
'service_severity',
|
||||
'service_last_state_change',
|
||||
'service_severity DESC',
|
||||
'service_last_state_change DESC',
|
||||
'service_display_name ASC',
|
||||
'host_display_name ASC'
|
||||
),
|
||||
'order' => self::SORT_DESC
|
||||
)
|
||||
),
|
||||
'host_severity' => array(
|
||||
'columns' => array(
|
||||
'host_severity',
|
||||
'host_last_state_change',
|
||||
'host_severity DESC',
|
||||
'host_last_state_change DESC',
|
||||
'host_display_name ASC',
|
||||
'service_display_name ASC'
|
||||
),
|
||||
'order' => self::SORT_DESC
|
||||
)
|
||||
),
|
||||
'host_display_name' => array(
|
||||
'columns' => array(
|
||||
|
|
Loading…
Reference in New Issue