Skip to content

Commit 05a2414

Browse files
committed
fix: conversationOptions
1 parent 20aa35f commit 05a2414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/chat/index.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const { usingContext, toggleUsingContext } = useUsingContext()
3737
const { uuid } = route.params as { uuid: string }
3838
3939
const dataSources = computed(() => chatStore.getChatByUuid(+uuid))
40-
const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !item.error)))
40+
const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !!item.conversationOptions)))
4141
4242
const prompt = ref<string>('')
4343
const loading = ref<boolean>(false)

0 commit comments

Comments
 (0)