Mathias Rando Juul
Mathias Rando Juul
I'm using version 1.1.1(version in the code itself is still 1.0.1 btw) and the issue is present. It keeps changing between sticky and non-sticky state. I'll investigate and hopefully make...
The issue is that `affixType` changes between `CONTAINER-BOTTOM` to `STATIC` and keep triggering new events. I'm still not sure how to prevent this properly, though. @melnikbo Unfortunately, in my case...
I figured out what's causing the issue in my instance. The element I use for creating my instance of StickySidebar has `padding-bottom` on it and that causes the `dims.containerHeight
@haja-ran Did you ever figure out a way to do this?
@haja-ran Thanks for the very swift reply. I haven't been able to find anyone who've managed to regenerate it without restarting Nuxt or bombarding some endpoint checking for the "freshness"...
If you don't actually need the plugin for the test I would assume you could add an early return in your `defineNuxtPlugin` based on the environment. Maybe you can use`import.meta.test`...
I'm currently using this in a project and it works fine if you do: `ChartOptions` as type for the options. You import `type ChartOptions` from `chart.js`.
Is there any progress on this? The issue is still present in the newest version even if redirect is `true`.
Not having this option is quite limiting as you can't even utilise `proxyRequest` when the body is too large.
> Either do it in different describe blocks or you can also just make the function you give a vitest.fn mock function. > > so like > > ```ts >...