diff --git a/web/app/components/workflow/skill/file-tree/artifacts-section.tsx b/web/app/components/workflow/skill/file-tree/artifacts-section.tsx index 90c4d427fd..faf4c2f692 100644 --- a/web/app/components/workflow/skill/file-tree/artifacts-section.tsx +++ b/web/app/components/workflow/skill/file-tree/artifacts-section.tsx @@ -3,6 +3,7 @@ import type { FC } from 'react' import { RiArrowRightSLine } from '@remixicon/react' import * as React from 'react' +import { useTranslation } from 'react-i18next' import FolderSpark from '@/app/components/base/icons/src/vender/workflow/FolderSpark' import { cn } from '@/utils/classnames' @@ -17,22 +18,31 @@ type ArtifactsSectionProps = { * Placeholder implementation - functionality to be added later. */ const ArtifactsSection: FC = ({ className }) => { + const { t } = useTranslation('workflow') // TODO: Replace with actual data const badgeText = 'Test Run#3' const hasNewFiles = true return (
-
+
) } diff --git a/web/app/components/workflow/skill/file-tree/index.tsx b/web/app/components/workflow/skill/file-tree/index.tsx index bae0ecdf18..e719251523 100644 --- a/web/app/components/workflow/skill/file-tree/index.tsx +++ b/web/app/components/workflow/skill/file-tree/index.tsx @@ -40,7 +40,7 @@ const DropTip = () => { const { t } = useTranslation('workflow') return (
- +