Sort field should be StartDateTime not StartTime

This commit is contained in:
Isaac Connor 2021-05-11 14:01:19 -04:00
parent c080dd8a12
commit bdae5dd9f8
1 changed files with 2 additions and 2 deletions

View File

@ -2669,7 +2669,7 @@ our @options = (
}, },
{ {
name => 'ZM_WEB_EVENT_SORT_FIELD', name => 'ZM_WEB_EVENT_SORT_FIELD',
default => 'StartTime', default => 'StartDateTime',
description => 'Default field the event lists are sorted by', description => 'Default field the event lists are sorted by',
help => q` help => q`
Events in lists can be initially ordered in any way you want. Events in lists can be initially ordered in any way you want.
@ -2681,7 +2681,7 @@ our @options = (
`, `,
type => { type => {
db_type =>'string', db_type =>'string',
hint =>'Id|Name|Cause|DiskSpace|MonitorName|StartTime|Length|Frames|AlarmFrames|TotScore|AvgScore|MaxScore', hint =>'Id|Name|Cause|DiskSpace|MonitorName|StartDateTime|Length|Frames|AlarmFrames|TotScore|AvgScore|MaxScore',
pattern =>qr|.|, pattern =>qr|.|,
format =>q( $1 ) format =>q( $1 )
}, },