From aa33ba55ccfa4e8e76d5578e90b901fc43d77213 Mon Sep 17 00:00:00 2001 From: "Snow Lee (Sungwon)" Date: Tue, 11 Aug 2026 02:12:42 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20the=20=E2=8C=98K=20palette=20descriptio?= =?UTF-8?q?n=20matches=20what=20it=20actually=20offers=20(BEA-84)=20(#132)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit README.md:499 promised "share/history/upload actions" in the command palette. Upload has never existed there (browser upload is deliberately absent, Browser.tsx:175), download went unmentioned, and share/download are file-scoped — so a reader on a folder route goes hunting for controls that are correctly hidden. The doc comment at Palette.tsx:8 carried the same wrong list, so fixing only the README would leave the next reader of the component with the same picture. Prose and a comment only; no code path changes. `npm run build` produces a byte-identical internal/webapp/static (source comments are stripped from the bundle), so no assets to commit. Co-authored-by: Claude Opus 5 (1M context) --- README.md | 5 +++-- internal/webapp/frontend/src/components/Palette.tsx | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 18fc011..6b780d3 100644 --- a/README.md +++ b/README.md @@ -496,8 +496,9 @@ The payoff, once those hooks are in place: "write a report and share it" becomes the agent generating `wiki/report.html` and replying with a link. The web UI lists your orgs' projects in the sidebar (⌘K opens a command -palette: fuzzy file search, project switching, share/history/upload -actions); selecting one browses that project's files, and the **History** +palette: fuzzy file search, project switching, the project's own pages, and +history — plus share and download of the file you have open); selecting one +browses that project's files, and the **History** view shows every change — which account made it, when, from which device (name and OS — never the connecting IP), with view/download of any past version (content is diff --git a/internal/webapp/frontend/src/components/Palette.tsx b/internal/webapp/frontend/src/components/Palette.tsx index 4bd0cf8..fc88d29 100644 --- a/internal/webapp/frontend/src/components/Palette.tsx +++ b/internal/webapp/frontend/src/components/Palette.tsx @@ -5,7 +5,7 @@ import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog"; /* ---- command palette (⌘K / Ctrl+K) ---- One box for everything: fuzzy-jump to any file, switch projects, and run - quick actions (share, history, upload, download, sign out). */ + quick actions (history always, share and download on a file, sign out). */ export interface PaletteItem { icon: string;