We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db502e1 commit efc9e81Copy full SHA for efc9e81
src/store/modules/chat/index.ts
@@ -165,7 +165,6 @@ export const useChatStore = defineStore('chat-store', {
165
if (!uuid || uuid === 0) {
166
if (this.chat.length) {
167
this.chat[0].data = []
168
- this.history[0].title = 'New Chat'
169
this.recordState()
170
}
171
return
@@ -174,7 +173,6 @@ export const useChatStore = defineStore('chat-store', {
174
173
const index = this.chat.findIndex(item => item.uuid === uuid)
175
if (index !== -1) {
176
this.chat[index].data = []
177
- this.history[index].title = 'New Chat'
178
179
180
},
0 commit comments