Fix: The number of chunks in the file list is not displayed. (#14232)

### What problem does this PR solve?

Fix: The number of chunks in the file list is not displayed.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2026-04-20 19:24:20 +08:00
committed by GitHub
parent 5265def967
commit c43367eca3
7 changed files with 21 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
import { RunningStatus } from '@/constants/knowledge';
export interface IDocumentInfo {
chunk_num: number;
// chunk_num: number;
create_date: string;
create_time: number;
created_by: string;
@@ -11,7 +11,7 @@ export interface IDocumentInfo {
location: string;
name: string;
parser_config: IParserConfig;
parser_id: string;
// parser_id: string;
pipeline_id: string;
pipeline_name: string;
process_begin_at?: string;
@@ -29,6 +29,8 @@ export interface IDocumentInfo {
update_date: string;
update_time: number;
meta_fields?: Record<string, any>;
chunk_method: string;
chunk_count: number;
}
export interface IParserConfig {