You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Estou tentando utilizar, mas não está validando as datas inicio e fim.
const validaFormAnaliseQuimica = yup.object().shape({
dataFim: yup.date()
.when(
'dataInicio',
(dataInicio: Date, schema: any) => (dataInicio && schema.min(dataInicio, "A Data Final deve ser maior do que a data inicial"))
),
corrida: yup.string()
.matches(/^[0-9]*$/, 'Deve-se inserir apenas números')
})
O que estou fazendo de errado ?
The text was updated successfully, but these errors were encountered:
https://www.npmjs.com/package/yup#date
jquense/yup#324
Estou tentando utilizar, mas não está validando as datas inicio e fim.
O que estou fazendo de errado ?
The text was updated successfully, but these errors were encountered: