Replies: 1 comment
-
I've found a solution in issue #780 (this comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone know how to set a default date value for an autoform?
The docs say "If you want to set default value of date, convert it to Date first using new Date(val)",
const formSchema = z.object({ orderDate: z.coerce .date() .default(new Date()) .describe('Order Date'), })
However, it causes a console error because the AutoFormFieldDate expects a DateValue value type (from the @internationalzed/date package).
TypeError: slotProps.componentField.modelValue.toDate is not a function
Beta Was this translation helpful? Give feedback.
All reactions