diff --git a/frontend/src/views/KnowledgeView.vue b/frontend/src/views/KnowledgeView.vue index 2c0319c..a92e243 100644 --- a/frontend/src/views/KnowledgeView.vue +++ b/frontend/src/views/KnowledgeView.vue @@ -247,7 +247,7 @@ const chatCollapsed = ref(false); const chatConvId = ref(null); async function onMinichatSubmit(payload: { content: string; contextNoteId?: number }) { if (!chatConvId.value) { - const conv = await chatStore.createConversation("Knowledge chat"); + const conv = await chatStore.createConversation(); chatConvId.value = conv.id; await chatStore.fetchConversation(conv.id); } else if (chatStore.currentConversation?.id !== chatConvId.value) { diff --git a/frontend/src/views/WorkspaceView.vue b/frontend/src/views/WorkspaceView.vue index 9df875b..a8fb69b 100644 --- a/frontend/src/views/WorkspaceView.vue +++ b/frontend/src/views/WorkspaceView.vue @@ -135,8 +135,7 @@ onMounted(async () => { if (workspaceConvId === null) { // Create a new workspace conversation and persist its ID - const title = project.value ? `${project.value.title} — Workspace` : "Workspace"; - const conv = await chatStore.createConversation(title); + const conv = await chatStore.createConversation(); workspaceConvId = conv.id; isNewConv = true; await chatStore.fetchConversation(conv.id);