submit to self doesn't work
When the form submits to itself (to the same page), the handler is not triggered
To clarify, the form submits, but handleEnter is not called again.
I assume you'd need to use the onChange hook instead if you know a form will be submitting to the same URL - this didn't exist when react-router-form was initially created.
@insin Does that work isomorphically (e.g. hard reload)?
According to the docs, you'd probably want both onChange and onEnter in that case - onEnter for the server and onChange for the browser.
onChange(prevState, nextState, replace, callback?)Called on routes when the location changes, but the route itself neither enters or leaves.
This is a "problem" within React Router, then, not react-router-form, correct?