Extract all forms into their own component
Open
enhancement
- Dominant language
- TypeScript
- Stars
- 5
- Forks
- 1
- Avg merge
- 15m
- Merged PRs (30d)
- 21
Description
Right now we have forms directly on the page, and we update the form fields by a call to `form.setValues`. This is problematic, as it makes `form.isDirty` not work correctly, as it only returns true if a field has been edited and is different from its `initialValue`.
The solution is to extract each form into a component. We can then in the parent component fetch the data and then pass the data as props, e.g. ``. We can then in the form component set the initialValues directly to the passed data.
Contributor guide
Assessment
This issue has not been assessed yet.