-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HPCC-29403 Allow disabling time zone adjustments in ECLWatch #17655
base: candidate-9.2.x
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1307,4 +1307,13 @@ export function wuidToTime(wuid: string): string { | |
|
||
export function wuidToDateTime(wuid: string): Date { | ||
return new Date(`${wuidToDate(wuid)}T${wuidToTime(wuid)}Z`); | ||
} | ||
} | ||
export function convertToLocalTime(dateString) { | ||
const modifiedDate = new Date(dateString); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These conversion functions may have to be slightly more complicated unfortunately. Using the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
return modifiedDate.toLocaleString(); | ||
} | ||
|
||
export function convertToUTCTime(dateString) { | ||
const modifiedDate = new Date(dateString); | ||
return modifiedDate.toUTCString(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed this before, but you'd probably have to change the label here depending on which TZ is selected, so it doesn't always say "UTC"