mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
allow undefined timezone in yup
This commit is contained in:
parent
0e782f3bcc
commit
8cc7657b1b
@ -2,11 +2,14 @@ import moment from 'moment';
|
||||
import * as yup from 'yup';
|
||||
import { UNIT_TYPES } from './constants';
|
||||
|
||||
export const TimezoneTest = yup.string().test(
|
||||
'timezone',
|
||||
() => `Invalid timezone`,
|
||||
value => moment.tz.zone(value) !== null,
|
||||
);
|
||||
export const TimezoneTest = yup
|
||||
.string()
|
||||
.default('UTC')
|
||||
.test(
|
||||
'timezone',
|
||||
() => `Invalid timezone`,
|
||||
value => moment.tz.zone(value) !== null,
|
||||
);
|
||||
|
||||
export const UnitTypeTest = yup.string().test(
|
||||
'unit',
|
||||
|
Loading…
Reference in New Issue
Block a user