Christoph

Results 10 comments of Christoph

I could track this down to two lines of code in orchard and opened an issue there: https://github.com/clojure-emacs/orchard/issues/162 As a consequence, the quickfix is to set the `apple.awt.UIElement` property to...

I stumbled upon this issue while trying to implement Problem Details JSON (https://www.rfc-editor.org/rfc/rfc9457.html). The existing `ProblemNormalizer` is a good start, but the fact that I can not set specific detail...

Actually I also started with the tutorials, sorry for not mentioning it here. I made it to step 4 already, using the lexer and grammar from https://github.com/gregsh/Clojure-Kit as a blueprint....

@Chemaclass It was private, yes, but I figured there's no harm in turning it public. You should be able to access it now.

Instead of focusing on the Serializer, one could also catch and handle the Serializer's `InvalidArgumentException` in the `RequestPayloadValueResolver`. However I don't know if it was a deliberate choice _not_ to...

That's actually a good question. In this example, sure. But it is also dramatically simplified. In our application we have a list with multiple items, similar to [this example](https://ux.symfony.com/demos/live-component/invoice), but...

After some more debugging I realised that this has nothing to do with parent and child. Even if I drop the child component completely, I am not able to update...

Here is a demo project I just created: https://github.com/cgrabenstein/symfony-ux-demo Note how the single DTO is updating correctly, but the DTOs in the array do not update. You can add a...

No, I tried it, but it does not help. The code in your linked comment uses an array of arrays. I am using an array of objects. The method [`adjustPropertyPathForData`](https://github.com/symfony/ux/blob/d0bb978298e12ded03247ee5425d52419cd5424c/src/LiveComponent/src/LiveComponentHydrator.php#L365)...

Since version 6.2 there is a new default [`routes.yaml`](https://github.com/symfony/recipes/blob/main/symfony/routing/6.2/config/routes.yaml). For exclusions to work, the following change was necessary for me: ```diff controllers: + resource: ../src/Controller/**/* - resource: - path: ../src/Controller/...