form
form copied to clipboard
Want use the value of initialValue of field when the value of field is undefined
https://github.com/react-component/form/blob/9b580f661dcebdb7b50cfac67ff11a1a256f4286/src/createFieldsStore.js#L160
Can you add a judgment that if the value of value prop of field is undefined,it still get the value of fieldMeta.initialValue? such as const fieldValue = 'value' in field && field.value !== undefined ? field.value : fieldMeta.initialValue;
This would be useful!