fixes to allow for firstname value of null

This commit is contained in:
2022-03-22 11:07:26 +01:00
parent ae555fed00
commit 13a7d791a1
2 changed files with 4 additions and 7 deletions

View File

@@ -104,7 +104,7 @@ class ThirdPartyType extends AbstractType
$builder
->add('firstname', TextType::class, [
'label' => 'firstname',
'required' => true,
'required' => false,
])
->add('civility', PickCivilityType::class, [
'label' => 'thirdparty.Civility',