Describe the bug
If I add in my CrudController a ChoiceField and I setDefaultColumns('col-md-12 col-xxl-12') but I use the autocomplete option the Choice Configurator reset my value:
https://github.com/EasyCorp/EasyAdminBundle/blob/4.x/src/Field/Configurator/ChoiceConfigurator.php#L97
To Reproduce
create a CrudController with:
yield ChoiceField::new('property', 'label')
->addCssClass('text-stars')
->setDefaultColumns('col-md-12 col-xxl-12')
->setChoices(['name1' => 1, 'name2' => 2])
`