Jano Paetzold
Jano Paetzold
Browsers don't allow `"unsafe-inline"` for extensions. But `adapter-static` even uses inline scripts when you disable prerendering. I'm a bit clueless on how to use SvelteKit for web extensions because of...
> Waydroid creates unique xdg entries for each application, you can just remove them and it will no longer appear in your OS searches. Thanks, that's a great workaround. I...
One general problem with the `FactoryCollection` template type is that it only references the class of the object to be produced – not the actual factory class to produce the...
Thanks for taking the time to reply :) > I'm just wondering how we should document FactoryCollection::create() I'd write it like this: ```php /** * @template TModel * @template TFactory...
This probably means that the template cache creates new entries whenever the block content changes. I assume that in most cases, the block content will only change when the Test...
Imagine a list component: ```twig {% for item in items %} {% block content %}{# Variable `item` shall be available in the block and contain the current item #}{% endblock...
> You should not test the framework, but your code. So how do I test that my code sets those vairables correctly without testing the framework? Without my code, no...
I think you're 100 % right. I hadn't read https://github.com/symfony/ux/pull/3211#discussion_r2594245397 yet when I wrote my last comment here. We should solve this without the risk to break existing test code.