Default rendering not working with BigInt
Describe the bug
/** Total bytes across files tracked here (optional, best-effort). */
#[ORM\Column(type: Types::BIGINT)]
public int $bytes = 0;
To Reproduce
Create a crud controller (bin/console make:admin:crud) for an entity with this property
The value of the "bytes" field of the entity with ID = "000" can't be converted into a string, so it cannot be represented by a TextField or a TextareaField. RuntimeException in vendor/easycorp/easyadmin-bundle/src/Field/Configurator/TextConfigurator.php (line 41) in vendor/easycorp/easyadmin-bundle/src/Factory/FieldFactory.php -> configure (line 111) in vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php -> processFields (line 43) in vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php -> processFields (line 49) in vendor/easycorp/easyadmin-bundle/src/Controller/AbstractCrudController.php -> processFieldsForAll (line 147) in vendor/symfony/http-kernel/HttpKernel.php -> index (line 183) in vendor/symfony/http-kernel/HttpKernel.php -> handleRaw (line 76) in vendor/symfony/http-kernel/Kernel.php -> handle (line 182) in vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php -> handle (line 35)
Change it back to Types::INTEGER and it works as expected.