From 963533bc2718dab294b9094beec8f53f2b9c6429 Mon Sep 17 00:00:00 2001 From: balibabu <cike8899@users.noreply.github.com> Date: Wed, 3 Apr 2024 12:07:41 +0800 Subject: [PATCH] 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) --- web/src/hooks/knowledgeHook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/hooks/knowledgeHook.ts b/web/src/hooks/knowledgeHook.ts index e34917b..2904aee 100644 --- a/web/src/hooks/knowledgeHook.ts +++ b/web/src/hooks/knowledgeHook.ts @@ -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]); -- GitLab