EasyAdminBundle icon indicating copy to clipboard operation
EasyAdminBundle copied to clipboard

EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.

Results 435 EasyAdminBundle issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Explain what you wanted to do and the wrong result you got. ```php HiddenField::new('accessToken')->setHtmlAttribute('data-clipboard-target','token'), ``` does not add the html attribute to the element **To Reproduce** Add...

Fixes #6226 by checking if parameters are actually present

**Describe the bug** When submitting an EA form in functional tests it seems to miss the 'ea' parameter, causing it to error out. **To Reproduce** ```php $crawler = $this->client->request('GET', $this->generateEditFormUrl($foo->getId()));...

**Describe the bug** I tried disabling actions from a Crud controller, but the actions were not disabled. After digging it up a little bit, I finally understood that the reason...

Is there a particular reason why the filters were not enabled on the "autocomplete" action? By default, this creates a `queryBuilder` with `FieldCollection::new()` / `FilterCollection::new()` here: https://github.com/EasyCorp/EasyAdminBundle/blob/4.x/src/Controller/AbstractCrudController.php#L454 Maybe can we...

**Describe the bug** Hello, when you add a disabled TextEditorField, the field is not disabled, however data modification are ignored, the WYSIWYG/Ckeditor is not really disabled (but the hidden textarea...

**Short description of what this feature will allow to do:** Following my previous issue #6191 I will propose a new PR based on #6199 to make ArrayField based on iterable...

**Describe the bug** A crash from PropertyAccessor via AssociationConfigurator **To Reproduce** Unsure exactly, but it appears that when a null instance is passed to EntityDto and RenderFilters is called, AssociationConfigurator...

**Describe the bug** We worked on object (object1) with many to many relation with another object (object 2). The both objects use UUID id. In the object 1 crud controller...