mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-10-21 19:24:29 +00:00
fix: conversationOptions
This commit is contained in:
@@ -37,7 +37,7 @@ const { usingContext, toggleUsingContext } = useUsingContext()
|
|||||||
const { uuid } = route.params as { uuid: string }
|
const { uuid } = route.params as { uuid: string }
|
||||||
|
|
||||||
const dataSources = computed(() => chatStore.getChatByUuid(+uuid))
|
const dataSources = computed(() => chatStore.getChatByUuid(+uuid))
|
||||||
const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !item.error)))
|
const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !!item.conversationOptions)))
|
||||||
|
|
||||||
const prompt = ref<string>('')
|
const prompt = ref<string>('')
|
||||||
const loading = ref<boolean>(false)
|
const loading = ref<boolean>(false)
|
||||||
|
Reference in New Issue
Block a user