EasyAdminBundle
EasyAdminBundle copied to clipboard
CustomFormType labels are not automatically generated anymore
Hi,
Since 4.9.3 update, field label (not specified or null) on CustomFormType are not automatically generated anymore. Previously, it was generated by field name (same behaviour than Fields).
To be more specific, here is my use case :
ReversationCrud calls an ApplicantType (custom form type). ApplicantType calls many fields from Applicant entity (firstName, lastName ...)
class ApplicantType extends AbstractType
-----
$builder
->add('firstName', TextType::class, [
])
->add('lastName', TextType::class, [
])
;
Before 4.9.3, label firstName was automatically generated (First Name) but nothing appears since 4.9.3.
Is that a bug or just wanted behaviour ?
Have you seen issue #6001 ?
I'm discovering it ! It seems to fit my issue. Waiting for it !
Thank's, sorry for troubles