David Porter
David Porter
I was running into this exact issue too. I finally figured it out. My app was using the popular npm package `jsonwebtoken`. This library has dependencies on Node.js core modules....
Here is the entrity of my static.json file for reference: ``` { "root": "build/", "routes": { "/**": "index.html" }, "https_only": true, "headers": { "/**": { "Strict-Transport-Security": "max-age=31557600", "X-Frame-Options": "SAMEORIGIN", "X-Content-Type-Options":...
This is the same issue with table cells. If you double click the text content inside a cell to select the text and then delete it with the delete key,...
I'm pretty sure that this issue is the same: https://github.com/froala/wysiwyg-editor/issues/3822 The only difference is that he's noticing this with `p` tags while I'm noticing it with `td` tags. However, it's...
i just started trying to use this library, and when I scroll to the bottom it just repeatedly calls `loadMore` until it's out of pages. not sure if this is...
I am stuck on this too. Same error.
It's reproducible if the "employees" relation already joins "officer_statuses". If you get rid of the joins on the initial relation, it works. But in my case I need that initial...
i hacked around this by forcing calling recomputeRowHeights on drag change. On drag I set an interval at 250ms to recompute row heights. When stopped dragging, I clear the interval....