Skip to content

Commit

Permalink
fix: conversationOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Chanzhaoyu committed Apr 10, 2023
1 parent 20aa35f commit 05a2414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/chat/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 05a2414

Please sign in to comment.