I use the Redux v6.5.0 form and have Delete check for any field when disabled details are transmitted as true .
I wrote custom logic to disable validation inside render () of a custom field component, but it looks like this: updateSyncErrors () is not called on the form even after updating the values manually. Because of this, the syncErrors object saves a field validation error.
if (field.disabled) { field.meta.invalid = false; field.meta.error = undefined; field.meta.valid = true; }
Can we have a straightforward approach - a simple and effective approach that eliminates this requirement and eliminates this problem?
source share