diff --git a/studio/frontend/src/features/chat/projects-page.tsx b/studio/frontend/src/features/chat/projects-page.tsx index 1651b4962..b9a5658a9 100644 --- a/studio/frontend/src/features/chat/projects-page.tsx +++ b/studio/frontend/src/features/chat/projects-page.tsx @@ -12,7 +12,9 @@ import { import { DropdownMenu, DropdownMenuContent, + DropdownMenuGroup, DropdownMenuItem, + DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuSub, DropdownMenuSubContent, @@ -300,33 +302,53 @@ export function ProjectsPage() { Export All Projects - {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( - void handleBulkProjectExport("projects", fmt, true)}> - {label} (combined) - - ))} + + + Combined + + {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( + void handleBulkProjectExport("projects", fmt, true)}> + {label} + + ))} + - {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( - void handleBulkProjectExport("projects", fmt, false)}> - {label} (per chat) - - ))} + + + Per chat + + {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( + void handleBulkProjectExport("projects", fmt, false)}> + {label} + + ))} + Export Projects + Recents - {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( - void handleBulkProjectExport("all", fmt, true)}> - {label} (combined) - - ))} + + + Combined + + {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( + void handleBulkProjectExport("all", fmt, true)}> + {label} + + ))} + - {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( - void handleBulkProjectExport("all", fmt, false)}> - {label} (per chat) - - ))} + + + Per chat + + {EXPORT_FORMATS_LIST.map(({ fmt, label }) => ( + void handleBulkProjectExport("all", fmt, false)}> + {label} + + ))} +