Feat: Display the video field in the parser operator #9869 (#10728)

### What problem does this PR solve?

Feat: Display the video field in the parser operator #9869

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-10-22 18:59:20 +08:00
committed by GitHub
parent 0e549e96ee
commit 4910146149
5 changed files with 24 additions and 13 deletions

View File

@ -65,7 +65,7 @@ const Chunk = () => {
navigateToDatasetOverview,
navigateToDatasetList,
navigateToAgents,
navigateToDataflow,
navigateToAgent,
} = useNavigatePage();
let fileUrl = useGetDocumentUrl(isAgent);
@ -179,7 +179,7 @@ const Chunk = () => {
navigateToDatasetOverview(knowledgeId)();
}
if (agentId) {
navigateToDataflow(agentId)();
navigateToAgent(agentId)();
}
}}
>