Kaynağa Gözat

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)
tags/v0.1.0
balibabu 1 yıl önce
ebeveyn
işleme
963533bc27
No account linked to committer's email address
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1
    1
      web/src/hooks/knowledgeHook.ts

+ 1
- 1
web/src/hooks/knowledgeHook.ts Dosyayı Görüntüle

@@ -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]);


Loading…
İptal
Kaydet