fix(TIMEZONE): Set UTC+0 to UTC(dayjs does not recognize UTC+0)

This commit is contained in:
haitaoo
2023-02-22 11:34:38 +08:00
parent 3b9070cf4f
commit 57843bc0ce
+2 -2
View File
@@ -573,10 +573,10 @@ export const TIMEZONES = [
{
label: 'UTC',
options: [{ value: 'UTC+0', label: 'UTC' }],
options: [{ value: 'UTC', label: 'UTC' }],
},
];
export const DEFAULT_TIMEZONE = 'UTC+0';
export const DEFAULT_TIMEZONE = 'UTC';
export const TIMELINE_NORMAL_ACTIVITY_TYPE = [
'undeleted',