v0.38.0
- Introduce the
showErrorListprop for hiding the top error list (#269)
Error List Display
To disable rendering of the error list at the top of the form, you can set the showErrorList prop to false. Doing so will still validate the form, but only the inline display will show.
render((
<Form schema={schema}
showErrorList={false}/>
), document.getElementById("app"));