Charles Chen
Charles Chen
> Hi, take a look at this lib, if you're having issues _[vue-dndrop](https://amendx.github.io/vue-dndrop/)_ @idanstrul @amendx the same problem also exists in the vue-dndrop lib on touch devices (tested on Chrome...
Alternate fix: ```js // Call from your drop handler. export function cleanSmoothDnd() { document.body.className = document.body.className .split(' ') .filter(c => c.indexOf('dnd') < 0) .join(' ') } ```
@Akash187 You're right! Simulator seems to be misleading in this case. Back to the drawing board.
Hi, any idea when this will get merged in?
I am also interested in this functionality, but reviewing the code and the documentation for puppeteer `page.pdf()`, it is quite limited. https://pptr.dev/#?product=Puppeteer&version=v5.3.1&show=api-pagepdfoptions One thing I noticed, for example, is that...
Good read and many of the perspectives match my own through experience with React on a handful of large projects. My conclusion: > React is the new IBM: you should...
@josh-collinsworth @bb-in-hoodie My take on the DX/UX is that they are intimately linked. The React DX is such that it easily leads to bad UX precisely because it's so easy...
@cameroncf 's solution worked for me. If you are using Yarn, you'll need to use `resolutions` instead of `overrides`: ```json "resolutions": { "ufo": "1.5.3" } ``` (Add at same level...
Running into a similar issue. The app has two sets of use cases but share some of the same components, model definitions, utilities, and so on. There's some overlap in...
There appears to be some incompatibility here with other packages like `drizzle-typebox` even using the factory functions as recommended: https://orm.drizzle.team/docs/typebox#factory-functions Also saw this issue: https://github.com/elysiajs/elysia/issues/75