diff --git a/src/lib/components/chat/Settings/General.svelte b/src/lib/components/chat/Settings/General.svelte
index 567c67a8f..8825b7902 100644
--- a/src/lib/components/chat/Settings/General.svelte
+++ b/src/lib/components/chat/Settings/General.svelte
@@ -176,7 +176,7 @@
System Prompt
diff --git a/src/lib/components/layout/Sidebar.svelte b/src/lib/components/layout/Sidebar.svelte
index 7e02926da..9df7ab988 100644
--- a/src/lib/components/layout/Sidebar.svelte
+++ b/src/lib/components/layout/Sidebar.svelte
@@ -61,12 +61,16 @@
};
const editChatTitle = async (id, _title) => {
- title = _title;
+ if (_title === '') {
+ toast.error('Title cannot be an empty string.');
+ } else {
+ title = _title;
- await updateChatById(localStorage.token, id, {
- title: _title
- });
- await chats.set(await getChatList(localStorage.token));
+ await updateChatById(localStorage.token, id, {
+ title: _title
+ });
+ await chats.set(await getChatList(localStorage.token));
+ }
};
const deleteChat = async (id) => {
@@ -388,6 +392,7 @@
show = false;
}
}}
+ draggable="false"
>