Eliya Cohen
Eliya Cohen
Addressing both the of issues in https://github.com/ts-safeql/safeql/pull/354
> which suggests that SafeQL may not be handling libpg-query crashes properly. I might be wrong, but if I recall, even if I wrap the call to libpg-query with try/catch...
fixed in https://github.com/ts-safeql/safeql/pull/398
Any workarounds?
Thanks for the detailed reproduction. I'll look into it.
This is somewhat related to https://github.com/ts-safeql/safeql/discussions/210 I have unstaged changes that attempts to solve this issue by introducing a new "group" node which can be "nullable" and contain "children". This...
That's correct, but is it really an issue if we always link to `.html`? I don't mind reopening this issue; it just feels negligible now that we consistently point to...
Would a revert PR be accepted?
This is the code I'm using: ``` ראשי ... ``` When I type ``, it looks like this: (Which is fine) https://i.gyazo.com/6e9c2919303d90119808a12f0a43341e.mp4 But when I type ``, it starts to...
When I changed these lines on `sidebar.js`, it fixed the issue **only on fullscreen**: from this: distance.left = -width; distance.right = width; to this: distance.left = width; distance.right = -width;...