diff --git a/canvas/src/components/tabs/ChatTab.tsx b/canvas/src/components/tabs/ChatTab.tsx index d6a9b85ca..274a84961 100644 --- a/canvas/src/components/tabs/ChatTab.tsx +++ b/canvas/src/components/tabs/ChatTab.tsx @@ -676,7 +676,8 @@ function MyChatPanel({ workspaceId, data }: Props) { {uploading ? "Uploading…" : "Send"} diff --git a/canvas/src/components/tabs/FilesTab/FileTree.tsx b/canvas/src/components/tabs/FilesTab/FileTree.tsx index 0e32bc455..7469b9d32 100644 --- a/canvas/src/components/tabs/FilesTab/FileTree.tsx +++ b/canvas/src/components/tabs/FilesTab/FileTree.tsx @@ -209,8 +209,8 @@ function TreeItem({ onContextMenu={(e) => openContextMenu(e, node)} {...dragProps} > - {isLoading ? "…" : expanded ? "▼" : "▶"} - 📁 + {isLoading ? "…" : expanded ? "▼" : "▶"} + 📁 {node.name} setNewKey(e.target.value.toUpperCase())} placeholder="KEY_NAME" + aria-label="Secret key name" className="w-full bg-surface-sunken border border-line rounded px-2 py-1 text-[10px] font-mono text-ink focus:outline-none focus:border-accent" /> setNewValue(e.target.value)} placeholder="Value" type="password" + aria-label="Secret value (write-only)" className="w-full bg-surface-sunken border border-line rounded px-2 py-1 text-[10px] text-ink focus:outline-none focus:border-accent" /> { if (newKey && newValue) handleSave(newKey, newValue); }} disabled={!newKey || !newValue}