zerosym

Results 10 comments of zerosym

At least with Next and React 18 I found that having strict mode enabled is what prevents popovers, tooltips, menus, etc. from showing.

I just tweaked something I've been working on to try to replicate this -- no luck. Are you dynamically filtering the lists at the data level; e.g. in computed properties,...

Turns out the glitches I was seeing on my end was just bad coding/oversight from my hasty attempt to replicate the issue... sorry. Doesn't seem like I can replicate this...

It's an issue with the polyfill here: https://github.com/kutlugsahin/smooth-dnd/blob/master/src/polyfills.js#L1 `(this.document || this.ownerDocument)` winds up as null during certain swiper routines If anyone needs a temporary fix just copy/paste the poly and...

Just wanted to chime in and say that I've also been experiencing lengthy (15+ minute) migration times even after breaking my initial migration into multiple smaller pieces. Unfortunately that has...

@dosco I'm getting this introspection error with the latest graphjin docker image and timescaledb: ```json { "errors": [ { "message": "Introspection result missing inputFields: { kind: \"INPUT_OBJECT\", name: \"get_git_commitget_git_commitArgsInput\", description:...

I am also using m1ddc to swap multiple monitors at the same time. You can chain commands in this fashion without needing anything additional if you wish: ```sh # Example...

I ended up working around the ala-carte duplicate style issues by setting stylus-loader options to `{preferPathResolver: 'webpack'}` and then leveraging a custom webpack resolver plugin that aliases `vuetify/src/stylus/settings/_theme.styl` references to...

Just a warning: `Object.fromEntries` will return an incomplete copy if the `URLSearchParams` contains array values (e.g. `?a=4&a=5` will be collapsed to `{a: 5}`. Check the MDN link from earlier in...

Double check the docs for `useFormContext` and make sure that you are passing the entire return of your `useForm` call into the provider component, which Shadcn renames as `Form` instead...