mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-10-20 18:59:55 +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 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 loading = ref<boolean>(false)
|
||||
|
Reference in New Issue
Block a user