()
| 978 | const isAsync = fieldConfig && fieldConfig.async; |
| 979 | const notify = () => { |
| 980 | const callback = () => { |
| 981 | if (silent && state.fields[name as string]) { |
| 982 | notifyFieldListeners(name as string); |
| 983 | } else { |
| 984 | notifyFormListeners(); |
| 985 | notifyFieldListeners(undefined); |
| 986 | } |
| 987 | }; |
| 988 | executeCallback(callback, !!isAsync); |
| 989 | }; |
| 990 | if (fieldConfig) { |
no test coverage detected
searching dependent graphs…