diff --git a/tools/server/public/index.html.gz b/tools/server/public/index.html.gz index 3153b615921d8..260fdcfecaee8 100644 Binary files a/tools/server/public/index.html.gz and b/tools/server/public/index.html.gz differ diff --git a/tools/server/webui/src/components/Sidebar.tsx b/tools/server/webui/src/components/Sidebar.tsx index 1a6c8a32754de..8e79e00b8dd4f 100644 --- a/tools/server/webui/src/components/Sidebar.tsx +++ b/tools/server/webui/src/components/Sidebar.tsx @@ -7,6 +7,7 @@ import { ArrowDownTrayIcon, EllipsisVerticalIcon, PencilIcon, + PencilSquareIcon, TrashIcon, XMarkIcon, } from '@heroicons/react/24/outline'; @@ -76,15 +77,19 @@ export default function Sidebar() { })} onClick={() => navigate('/')} > - + New conversation + + New conversation {/* list of conversations */} - {groupedConv.map((group) => ( -
+ {groupedConv.map((group, i) => ( +
{/* group name (by date) */} {group.title ? ( - {group.title} + // we use btn class here to make sure that the padding/margin are aligned with the other items + + {group.title} + ) : (
)}