Skip to content

v0.38.0

Choose a tag to compare

@n1k0 n1k0 released this 11 Jul 06:36
· 1560 commits to main since this release
  • Introduce the showErrorList prop 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"));