Skip to content

Commit 7d31359

Browse files
authored
Merge pull request #1382 from utmstack/backlog/timezone_settings
fix[frontend](app_settings): added GMT+12 and daylight saving options on date settings
2 parents 4452b69 + 99cfc07 commit 7d31359

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/app/shared/constants/date-timezone-date.const.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export const TIMEZONES: Array<{ label: string; timezone: string, zone: string }>
2525
{label: 'Sydney (AEST)', timezone: 'Australia/Sydney', zone: 'Australia'},
2626
{label: 'Melbourne (AEST)', timezone: 'Australia/Melbourne', zone: 'Australia'},
2727
{label: 'Perth (AWST)', timezone: 'Australia/Perth', zone: 'Australia'},
28+
{label: 'New Zealand (NZST)', timezone: 'Pacific/Auckland', zone: 'Pacific'},
29+
{label: 'Fiji (FJT)', timezone: 'Pacific/Fiji', zone: 'Pacific'},
2830
{label: 'Beijing (CST)', timezone: 'Asia/Shanghai', zone: 'Asia'},
2931
{label: 'Tokyo (JST)', timezone: 'Asia/Tokyo', zone: 'Asia'},
3032
{label: 'Seoul (KST)', timezone: 'Asia/Seoul', zone: 'Asia'},
@@ -37,7 +39,6 @@ export const TIMEZONES: Array<{ label: string; timezone: string, zone: string }>
3739
{label: 'Buenos Aires (ART)', timezone: 'America/Argentina/Buenos_Aires', zone: 'America'},
3840
{label: 'São Paulo (BRT)', timezone: 'America/Sao_Paulo', zone: 'America'},
3941
];
40-
4142
export const DATE_FORMATS: Array<{ label: string; format: string; equivalentTo: string }> = [
4243
{label: 'Short', format: 'short', equivalentTo: 'M/d/yy, h:mm a'},
4344
{label: 'Medium', format: 'medium', equivalentTo: 'MMM d, y, h:mm:ss a'},

0 commit comments

Comments
 (0)