mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-22 07:31:05 +08:00
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)
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user