mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-10 13:45:44 +08:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user