set isUtc to true by default...

This commit is contained in:
dal 2025-10-03 15:11:10 -06:00
parent 42f2dec8cb
commit 53a09f0c4b
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ export const ColumnLabelFormatSchema = z.object({
// OPTIONAL: default is 0. This will only apply if the format is set to 'number'. This will replace missing data with the specified value. // OPTIONAL: default is 0. This will only apply if the format is set to 'number'. This will replace missing data with the specified value.
replaceMissingDataWith: z.optional(z.union([z.literal(0), z.null(), z.string()])).default(0), replaceMissingDataWith: z.optional(z.union([z.literal(0), z.null(), z.string()])).default(0),
useRelativeTime: z.optional(z.boolean()).default(false), useRelativeTime: z.optional(z.boolean()).default(false),
isUTC: z.optional(z.boolean()).default(false), isUTC: z.optional(z.boolean()).default(true),
makeLabelHumanReadable: z.optional(z.boolean()).default(true), makeLabelHumanReadable: z.optional(z.boolean()).default(true),
// DO NOT SHARE WITH LLM // DO NOT SHARE WITH LLM
compactNumbers: z.optional(z.boolean()).default(false), compactNumbers: z.optional(z.boolean()).default(false),