You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
html generated by render_form is <input class="form-control" type="text">
which there is no name attr. This lead to fail POST form, because there is no field data detected when server received data.
Is this on purpose or bug?
If it is a bug, happy to PR .
The text was updated successfully, but these errors were encountered:
You seem to be absolutely right, and I just lost a few hours banging my head on this, before finding your issue.. For now the only solution I could come up with is to use wtf.quick_form instead of render_form:
html generated by
render_form
is<input class="form-control" type="text">
which there is no name attr. This lead to fail POST form, because there is no field data detected when server received data.
Is this on purpose or bug?
If it is a bug, happy to PR .
The text was updated successfully, but these errors were encountered: