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
2 changes: 1 addition & 1 deletion web/src/components/AppSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function AppSidebar() {
};

const navItems = currentInstance?.config?.sharedFolders?.length
? [...staticNavItems, { label: 'Folders', path: 'files', icon: FolderOpen }]
? [...staticNavItems, { label: 'Memory', path: 'files', icon: FolderOpen }]
: staticNavItems;

const inboxCount = useOpenHumanInputCount(id);
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/FileBrowserPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function FileBrowserPage() {
if (browsers.length === 0) {
return (
<div className="px-8 py-7 text-muted-foreground">
No folders available. Add a <code className="text-xs bg-muted px-1 py-0.5 rounded">shared_folder</code> block or a mission <code className="text-xs bg-muted px-1 py-0.5 rounded">folder</code> block to your config.
No memory available. Add a <code className="text-xs bg-muted px-1 py-0.5 rounded">shared_memory</code> block or a mission <code className="text-xs bg-muted px-1 py-0.5 rounded">memory</code> block to your config.
</div>
);
}
Expand All @@ -182,7 +182,7 @@ export function FileBrowserPage() {
<div className="px-8 pt-7 pb-4 shrink-0">
<div className="flex items-end gap-4 mb-5">
<div className="flex flex-col gap-1">
<h1 className="text-[22px] font-semibold tracking-tight leading-none">Folders</h1>
<h1 className="text-[22px] font-semibold tracking-tight leading-none">Memory</h1>
<span className="font-mono text-[11px] text-muted-foreground/70 tracking-[0.2px]">
{instance?.name ?? '—'} · {browsers.length} source{browsers.length !== 1 ? 's' : ''}
</span>
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/PluginsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function PluginsPage() {
<Alert className="mb-4 border-blue-500/30 bg-blue-500/5 text-blue-200 [&>svg]:text-blue-400">
<Info className="h-4 w-4" />
<AlertDescription>
File management tools are automatically available to commanders when shared folders are configured.
File management tools are automatically available to commanders when shared memory is configured.
</AlertDescription>
</Alert>
)}
Expand Down
Loading