diff --git a/frontend/src/views/pagetype/ai_chat/ChatDrawer.vue b/frontend/src/views/pagetype/ai_chat/ChatDrawer.vue index 9f2fd4e66..0da2876b9 100644 --- a/frontend/src/views/pagetype/ai_chat/ChatDrawer.vue +++ b/frontend/src/views/pagetype/ai_chat/ChatDrawer.vue @@ -268,7 +268,7 @@ function onChatTitleChanged(title: string) { @click.stop /> - {{ chat.title }} + {{ chat.title === 'New Chat' ? t('New Chat') : chat.title }} diff --git a/frontend/src/views/pagetype/ai_chat/ai_chat_list.vue b/frontend/src/views/pagetype/ai_chat/ai_chat_list.vue index bd41ce625..78c1d49d1 100644 --- a/frontend/src/views/pagetype/ai_chat/ai_chat_list.vue +++ b/frontend/src/views/pagetype/ai_chat/ai_chat_list.vue @@ -293,7 +293,7 @@ onMounted(() => { @click.stop /> -
{{ chat.title || t('Untitled') }}
+
{{ chat.title === 'New Chat' ? t('New Chat') : (chat.title || t('Untitled')) }}
{{ chat.message_count }} {{ t('messages') }} ·