Simon André
Simon André
This should be dealt with in Twig i think. But you can already enforce it inside your component i suppose ? ```twig {# index.html.twig #} Hahaa ``` ```twig {# Acme:Alert.html.twig...
@Kocal ```css span { display: inline; } ```
Could you show what the generated HTML looks like for your component root tag (before any script execution) ? ``` ```
Ok i was not sure if your data-controller would coexist will the live one. > Nothing gets logged on the first initial render That is expected, the render events are...
Honestly i don"t know :) As the component changes by nature after the defer/lazy render, it's very possible the event listener is disconnected. But "no", i don't think we will...
Regarding the TS things, would you be ok to open a PR ?
Hi @maelanleborgne : do you need anything on this one ?
It would only work outside component and not inside ```twig {% import Foo:Bar as Bar %} {# would work #} {# would probably not work #} ``` This is a...
The second part of the ternary is optional. The following will work the same ```twig {{ user.birthday ? user.birthday|date('Y-m-d') }} ```
(just a precision on this case, not an opinion on the RFC)