You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to be causing this error in the browser: Uncaught TypeError: Cannot convert a BigInt value to a number
Due to emitting 0n instead of 0: dev_704645398.dataTransfer.setDragImage(overlay_704645399, 0n, 0n);
Converting it to int seems to solve the issue for me.
The text was updated successfully, but these errors were encountered:
Any idea why the signature for setDragIamge uses int64? It exists in both the Nim dom module and kdom_impl here.
https://github.com/nim-lang/Nim/blob/78c834dd76f273d8813247647531005a1f7db1a6/lib/js/dom.nim#L1658
karax/karax/kdom_impl.nim
Line 1160 in 141f116
It seems to be causing this error in the browser:
Uncaught TypeError: Cannot convert a BigInt value to a number
Due to emitting
0n
instead of0
:dev_704645398.dataTransfer.setDragImage(overlay_704645399, 0n, 0n);
Converting it to
int
seems to solve the issue for me.The text was updated successfully, but these errors were encountered: