monitoring: Sort by host_display_name instead of name1 by default
refs #7843
This commit is contained in:
parent
0b557b7b29
commit
ab7a5763a6
|
@ -24,6 +24,7 @@ class HostStatus extends DataView
|
|||
return array(
|
||||
'host',
|
||||
'host_name',
|
||||
'host_display_name',
|
||||
'host_alias',
|
||||
'host_address',
|
||||
'host_state',
|
||||
|
@ -90,7 +91,7 @@ class HostStatus extends DataView
|
|||
public function getSortRules()
|
||||
{
|
||||
return array(
|
||||
'host_name' => array(
|
||||
'host_display_name' => array(
|
||||
'order' => self::SORT_ASC
|
||||
),
|
||||
'host_address' => array(
|
||||
|
|
Loading…
Reference in New Issue