Fix: Fixed the issue where dataset log avatars were displayed incorrectly #9869 (#10764)

### What problem does this PR solve?

Fix: Fixed the issue where dataset log avatars were displayed
incorrectly #9869

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2025-10-27 09:33:14 +08:00
committed by GitHub
parent 501b7d4d01
commit 51fb08be98
2 changed files with 16 additions and 15 deletions

View File

@ -50,7 +50,7 @@ export default function AgentTemplates() {
[showCreatingModal],
);
const { navigateToAgent, navigateToDataflow } = useNavigatePage();
const { navigateToAgent } = useNavigatePage();
const handleOk = useCallback(
async (payload: any) => {
@ -67,7 +67,7 @@ export default function AgentTemplates() {
if (ret?.code === 0) {
hideCreatingModal();
if (canvasCategory === AgentCategory.DataflowCanvas) {
navigateToDataflow(ret.data.id)();
navigateToAgent(ret.data.id, AgentCategory.DataflowCanvas)();
} else {
navigateToAgent(ret.data.id)();
}
@ -76,7 +76,6 @@ export default function AgentTemplates() {
[
hideCreatingModal,
navigateToAgent,
navigateToDataflow,
setAgent,
template?.avatar,
template?.canvas_category,

View File

@ -102,18 +102,20 @@ export const getFileLogsTableColumns = (
{
accessorKey: 'pipeline_title',
header: t('dataPipeline'),
cell: ({ row }) => (
<div className="flex items-center gap-2 text-text-primary">
<RAGFlowAvatar
avatar={row.original.avatar}
name={row.original.pipeline_title}
className="size-4"
/>
{row.original.pipeline_title === 'naive'
? 'general'
: row.original.pipeline_title}
</div>
),
cell: ({ row }) => {
const title = row.original.pipeline_title;
const pipelineTitle = title === 'naive' ? 'general' : title;
return (
<div className="flex items-center gap-2 text-text-primary">
<RAGFlowAvatar
avatar={row.original.avatar}
name={pipelineTitle}
className="size-4"
/>
{pipelineTitle}
</div>
);
},
},
{
accessorKey: 'process_begin_at',