field-form icon indicating copy to clipboard operation
field-form copied to clipboard

`form.isFieldValidating` does not works as expected

Open sxwebdev opened this issue 4 years ago • 0 comments

The documentation says that onFieldsChange is triggered 3 times. But at the moment this is not happening.

Example

onFieldsChange={(changed_fields) => {
  for (const field of changed_fields) {
     console.log(field.validating) // two times: false. expected: false > true > false
  }
}}

Field rules consist of at least two elements

Ant designe version: 4.16.13

Thanks

sxwebdev avatar Oct 30 '21 13:10 sxwebdev