mcp ui: add copy on history

This commit is contained in:
dswbx
2025-08-30 13:41:15 +02:00
parent 09fdde1c5b
commit d898018b49
2 changed files with 3 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
"type": "module", "type": "module",
"sideEffects": false, "sideEffects": false,
"bin": "./dist/cli/index.js", "bin": "./dist/cli/index.js",
"version": "0.17.0-rc.1", "version": "0.17.0-rc.2",
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.", "description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
"homepage": "https://bknd.io", "homepage": "https://bknd.io",
"repository": { "repository": {

View File

@@ -224,8 +224,9 @@ const History = () => {
<JsonViewer <JsonViewer
key={`${item.type}-${i}`} key={`${item.type}-${i}`}
json={item.data} json={item.data}
title={item.type} title={item.type.substring(0, 3)}
expand={2} expand={2}
showCopy
/> />
))} ))}
</div> </div>