Cédric Poncet
Cédric Poncet
hi @stof, could you merge it into a new TAG to fix the deprecated message? thanks in advance and thanks for this bundle!
Hi, same issue in 4.6.1 version with an AssociationField to reproduce in a crudController : ```php yield AssociationField::new('associationField') ->setFormTypeOptions([ 'expanded' => true, ]) ; ``` console.log eror : ``` caught...
Quick and ugly workaround for AssociationField, Just duplicate `vendor/easycorp/easyadmin-bundle/src/Field/AssociationField.php` to `src/Admin\Field/ExpandedAssociationField.php` ```php yield ExpandedAssociationField::new('associationField') ->setFormTypeOptions([ 'expanded' => true, 'class' => UsedEntity::class, // Need to specify the entity! ]); ``` @Dumorya,...