Dan Strokirk

Results 20 comments of Dan Strokirk

@max-sixty please, edit away! :D The key points I find important are: - Each line should be able to be commented out easily - Nesting is needed - Preferably a...

Can confirm, even the "graceful restart" that is supposed to happen via `max_memory_restart` doesn't work well in v5.3.0. Downgrading to v2.1 removes over 80% of the `connection closed before message...

As a workaround, I was able to run the tests using just the `vitest` command. In fact, `nuxt test` is never mentioned in the documentation, I realized.. https://nuxt.com/docs/getting-started/testing#using-vuetest-utils

Looks to be the same as https://github.com/nuxt/test-utils/issues/818?

Same as https://github.com/nuxt/test-utils/issues/684 ?

This can be especially problematic when using [Tanstack Query](https://tanstack.com/query/latest/docs/framework/vue/overview), since it will return a ref/proxy of the data so `structuredClone` is not available, and logs a warning on mutation. A...

@tdeckardt It depends on the issue, I've needed to remove some of my `FormKit type=select|dropdown` usages partially for this reason. But adding a `function fixFormkit1550(val) { return JSON.parse(JSON.stringify(val)) }` function...

Another way to resolve this bug when django-stubs errors on `django-extensions` is to generate stubs with `stubgen`. ``` stubgen -m django_extensions.db.models -o stubs touch django_extensions/__init__.py touch django_extensions/db/__init__.py # edit mypy.ini...

Hi @andrewgy8 , I think it was @q0w that made that PR. If I were to guess, they probably just closed it as cleanup since there was no response.

@zernonia Unfortunately even if I add DialogTitle myself via the slots Nuxt provides, so VisuallyHidden won’t help there. It seems DialogRoot expects to be used in the very same component...