fix: all documents in the knowledge base cannot be selected if they have not been parsed. #214 (#215)

### What problem does this PR solve?

fix: all documents in the knowledge base cannot be selected if they have
not been parsed.

Issue link: #214

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu 2024-04-03 12:07:41 +08:00 committed by GitHub
parent 080cbd96e8
commit 963533bc27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -135,7 +135,7 @@ export const useFetchKnowledgeList = (
const { data = [] } = knowledgeModel;
const list = useMemo(() => {
return shouldFilterListWithoutDocument
? data.filter((x: IKnowledge) => x.doc_num > 0)
? data.filter((x: IKnowledge) => x.chunk_num > 0)
: data;
}, [data, shouldFilterListWithoutDocument]);