diff --git a/src/App.jsx b/src/App.jsx
index 02d3837..02c95d8 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1586,6 +1586,7 @@ async function createNewChat() {
>
{library.name}
{chatLibrarySlug === library.slug &&
Chat
}
+ {pendingChatLibrarySlug === library.slug && Preparing
}
))
)}
@@ -1675,7 +1676,11 @@ async function createNewChat() {
<>
Chat - {chatSessions.find(s => s.session_id === activeSessionId)?.name || 'New Chat'}
- {chatLibrary && KB: {chatLibrary.name}}
+ {chatAttachmentLibrary && (
+
+ {chatLibrary ? `DB: ${chatLibrary.name}` : `DB: ${chatAttachmentLibrary.name} (preparing)`}
+
+ )}
@@ -1827,7 +1832,11 @@ async function createNewChat() {
<>
{activeLibrary?.name || 'Databases'}
- {chatLibrary && Chat KB: {chatLibrary.name}}
+ {chatAttachmentLibrary && (
+
+ {chatLibrary ? `Chat DB: ${chatLibrary.name}` : `Chat DB: ${chatAttachmentLibrary.name} (preparing)`}
+
+ )}