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:
balibabu
2026-04-29 19:52:28 +08:00
committed by GitHub
parent 9280c64518
commit 1692f0928f
4 changed files with 3 additions and 2 deletions

View File

@@ -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 {

View File

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