|
|
@ -15,7 +15,9 @@ const dataSources = computed(() => chatStore.history)
|
|
|
|
async function handleSelect({ uuid }: Chat.History) {
|
|
|
|
async function handleSelect({ uuid }: Chat.History) {
|
|
|
|
if (isActive(uuid))
|
|
|
|
if (isActive(uuid))
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(chatStore.active)
|
|
|
|
|
|
|
|
chatStore.updateHistory(chatStore.active, { isEdit: false })
|
|
|
|
await chatStore.setActive(uuid)
|
|
|
|
await chatStore.setActive(uuid)
|
|
|
|
|
|
|
|
|
|
|
|
if (isMobile.value)
|
|
|
|
if (isMobile.value)
|
|
|
|