Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/nasty-bars-study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@cloudflare/local-explorer-ui": patch
---

Fixed listing internal Cloudflare Durable Object tables.

The internal `_cf_KV` table that is used when using Durable Objects KV storage is now hidden from the table list dropdown in the local explorer as it is not accessible.
2 changes: 1 addition & 1 deletion packages/local-explorer-ui/src/drivers/do.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class LocalDODriver extends StudioSQLiteDriver {
const result = await super.schemas();

// Filter out internal DO tables
const excludeList = new Set(["_cf_METADATA"]);
const excludeList = new Set(["_cf_KV", "_cf_METADATA"]);

return Object.fromEntries(
Object.entries(result).map(([schemaName, schemaItems]) => [
Expand Down
Loading