From 1692f0928ff2bade2f553e010653064bc0d9cbf7 Mon Sep 17 00:00:00 2001 From: balibabu Date: Wed, 29 Apr 2026 19:52:28 +0800 Subject: [PATCH] Fix: The pipeline column header in the FileLogsTable is displaying incorrectly. (#14489) ### What problem does this PR solve? Fix: The pipeline column header in the FileLogsTable is displaying incorrectly. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/locales/en.ts | 1 + web/src/locales/zh.ts | 1 + web/src/pages/dataset/dataset-overview/index.tsx | 1 - web/src/pages/dataset/dataset-overview/overview-table.tsx | 2 +- 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/web/src/locales/en.ts b/web/src/locales/en.ts index bb2875cc5..f8713ac3f 100644 --- a/web/src/locales/en.ts +++ b/web/src/locales/en.ts @@ -286,6 +286,7 @@ Example: A 1 KB message with 1024-dim embedding uses ~9 KB. The 5 MB default lim raptor: 'RAPTOR', processingType: 'Processing type', dataPipeline: 'Switch or configure ingestion pipeline.', + dataPipelineTitle: 'Ingestion pipeline', operations: 'Operations', taskId: 'Task ID', duration: 'Duration', diff --git a/web/src/locales/zh.ts b/web/src/locales/zh.ts index 1b3eebf5e..75f1a4e75 100644 --- a/web/src/locales/zh.ts +++ b/web/src/locales/zh.ts @@ -242,6 +242,7 @@ export default { raptor: 'RAPTOR', processingType: '处理类型', dataPipeline: '切换或配置 ingestion pipeline。', + dataPipelineTitle: '数据管道', operations: '操作', taskId: '任务ID', duration: '耗时', diff --git a/web/src/pages/dataset/dataset-overview/index.tsx b/web/src/pages/dataset/dataset-overview/index.tsx index fdcf6c20a..b61e04cc4 100644 --- a/web/src/pages/dataset/dataset-overview/index.tsx +++ b/web/src/pages/dataset/dataset-overview/index.tsx @@ -220,7 +220,6 @@ const FileLogsPage: FC = () => { }, [active, t]); const tableList = useMemo(() => { - console.log('tableList', tableOriginData); if (tableOriginData && tableOriginData.logs?.length) { return tableOriginData.logs.map((item) => { return { diff --git a/web/src/pages/dataset/dataset-overview/overview-table.tsx b/web/src/pages/dataset/dataset-overview/overview-table.tsx index 0ddf676ed..446cf4307 100644 --- a/web/src/pages/dataset/dataset-overview/overview-table.tsx +++ b/web/src/pages/dataset/dataset-overview/overview-table.tsx @@ -130,7 +130,7 @@ export const getFileLogsTableColumns = ( }, { accessorKey: 'pipeline_title', - header: t('dataPipeline'), + header: t('dataPipelineTitle'), cell: ({ row }) => { const title = row.original.pipeline_title; const pipelineTitle = title === 'naive' ? 'general' : title;