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
{{ message }}
This repository was archived by the owner on May 30, 2024. It is now read-only.
Symfony version : 5.3.2
I have an entity Project which can have sevreal Steps, in my projectTypeBuilder i have this field (the collection of Steps) ->add('steps', CollectionType::class, [ 'entry_type' => StepType::class, 'entry_options' => [ 'label' => false, ], 'by_reference' => false, 'allow_add' => true, 'allow_delete' => true, ])
And in my stepFormType i have the Artgris media gallery field : ->add('gallery', MediaCollectionType::class, [ 'conf' => 'default', ])
When i add a new step from a project, the form gallery field won't appear until i save the step without gallery field..