Siegfried Diel

Results 15 comments of Siegfried Diel

Same here. If putting multiple constraints on a property and providing the `Valid` constraint at last, it crashes when I pass a string value to my property, for instance. Example:...

And I also realized that the help text tooltip isn't showing properly ![image](https://github.com/EasyCorp/EasyAdminBundle/assets/14924284/403576a4-8de9-4bf9-8b74-41ce6463ae2b) Other than that, you can see that there is no question-mark icon anymore if a field contains...

> After reading #5977 I'm still confused about the motivation of that change. Why would the flipped label / value be more relevant for boolean fields? I think when reading...

This is some kind of strange behavior of Doctrine or EasyAdmin. But changing the `APP_ENV` to `prod` and removing the var/cache folder leads to exactly this behavior as it is...

Same here. I have a OneToMany relation and I would like my collection items to be rendered by using the corresponding crud controller. But when submitting the page of the...

Same here. We have a custom naming strategy which prefixes all columns of a table with the table name. So, also the ID column ends up with the name `tableb_id`....

> For completion's sake: this issue is *only partially resolved by my PR* as @ServerExe in https://github.com/doctrine/orm/issues/9558#issuecomment-2553386677 requests functionality to determine the `referencedColumnName` based on the relation. As this requires...

Same here. When using private methods to join tables but using the joined aliases in the `select([])` method, PHPStan complains. Example: ```php $qb = $this ->createQueryBuilder('foo') ->select(['foo', 'bar', 'baz']); $this...

I guess this duplicates https://github.com/markuspoerschke/iCal/issues/501