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
The explorer crashes with the following error message when there are any bigint values in the KV database:
2024-02-25 16:20:10.717 [error] Error: Failed to list items: Do not know how to serialize a BigInt
at g.value (/Users/dahlia/.vscode/extensions/hashrock.deno-kv-admin-0.0.5/out/kv/webview.js:101:23)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
The error message apparently is thrown by JSON.stringify():
> JSON.stringify(1n)
Uncaught TypeError: Do not know how to serialize a BigInt
at JSON.stringify (<anonymous>)
at <anonymous>:1:27
The text was updated successfully, but these errors were encountered:
The explorer crashes with the following error message when there are any
bigint
values in the KV database:The error message apparently is thrown by
JSON.stringify()
:The text was updated successfully, but these errors were encountered: