Martin Sršeň

Results 9 comments of Martin Sršeň

I found quick hot-fix on CSS-level. I fixed my broken SVG with: ```svg * { text-rendering: geometricprecision !important; } ```

Would it be possible to display console warning if dispatch was called before onMount or before parent attached listener to event?

I was thinking more about this issue and after reading and searching trough some use-cases in our app I think that current behaviours in more appropriate then behaviour that I...

> @TylerRick wrote: > Your original REPL is actually a counterexample/the _opposite_ of what you described here Yeah sorry. After some time I realised that my first Svelte codebase was...

My workaround was to create new form that has specific structure only for creating entity (some mandatory inputs are missing) in comparison to edit form. You can use different forms...

It looks like bug in the `vendor/sulu/sulu/src/Sulu/Component/Rest/RestHelper.php` class in the `initializeListBuilder` method. This condition: ```php $sortBy = $this->listRestHelper->getSortColumn(); if (null != $sortBy) { $listBuilder->sort($fieldDescriptors[$sortBy], $this->listRestHelper->getSortOrder()); } ``` should look like...

> @MrSrsen Sounds like a good solution. Do you want to create a pull request for this? @alexander-schranz to which repository should I make the PR? `sulu/sulu`? And shouldn't this...

Still the same error. ``` /src/server.ts(19,30): 19:30 Argument of type '{ name: string; year: number; }' is not assignable to parameter of type 'Partial'. Object literal may only specify known...

I am using Symfony 7.2. I installed API platform to already existing app (twig only until now) and had the same issue. Mentioned fix above worked for me. I did:...