Vitali K
Results
1
comments of
Vitali K
Faced same issue - need to validate only touched fields. My workaround is: const touchedFields = Object.keys(form.getFieldsValue()).filter((el) => form.isFieldTouched(el)); form.validateFields(touchedFields)