-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
normalize group for null value #18
Comments
Hi @aitboudad I'm unable to reproduce this error would it be possible to provide me with a example form + model? Also what symfony version are you using? Thanks for reporting! |
@boekkooi here is an example to reproduce the issue: public function issues18Action(Request $request)
{
$form = $this->get('form.factory')->createNamedBuilder('')
->add('submit', 'submit')
->getForm();
$this->handleForm($request, $form);
return $this->render('::form.html.twig', array('form' => $form->createView()));
} |
Thanks for the very quick response this should be fixed now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Form with submit btn doesn't work properly:
I think the default value for group should be array and not null normalizeGroups
The text was updated successfully, but these errors were encountered: