diff --git a/tools/server/public/index.html.gz b/tools/server/public/index.html.gz index cd3528d3b2e49..4f18a634ce545 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/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte b/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte index 8dd4b20dcbb97..5976e5dd03d7b 100644 --- a/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte +++ b/tools/server/webui/src/lib/components/app/chat/ChatSidebar/ChatSidebar.svelte @@ -1,9 +1,12 @@ + - - - {conversation.name} - - {#if showLastModified} - - - {formatLastModified(conversation.lastModified)} - - - {/if} - - - - - { - e.stopPropagation(); - showDeleteDialog = true; + + {conversation.name} + + + {#if renderActionsDropdown} + + - - (showDeleteDialog = false)} - /> - - - - - Edit Conversation Name - - - { - if (e.key === 'Enter') { - e.preventDefault(); - handleConfirmEdit(); - showEditDialog = false; - } - }} - placeholder="Enter a new name" - type="text" - bind:value={editedName} - /> - - - - - Cancel - - Save - - - - + { + icon: Trash2, + label: 'Delete', + onclick: handleDelete, + variant: 'destructive', + shortcut: ['shift', 'cmd', 'd'], + separator: true + } + ]} + /> + + {/if}
{conversation.name}