We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20aa35f commit 05a2414Copy full SHA for 05a2414
src/views/chat/index.vue
@@ -37,7 +37,7 @@ const { usingContext, toggleUsingContext } = useUsingContext()
37
const { uuid } = route.params as { uuid: string }
38
39
const dataSources = computed(() => chatStore.getChatByUuid(+uuid))
40
-const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !item.error)))
+const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !!item.conversationOptions)))
41
42
const prompt = ref<string>('')
43
const loading = ref<boolean>(false)
0 commit comments