diff --git a/web/app/components/datasets/documents/create-from-pipeline/process-documents/actions.tsx b/web/app/components/datasets/documents/create-from-pipeline/process-documents/actions.tsx index 072ab61a98..301a2d97e7 100644 --- a/web/app/components/datasets/documents/create-from-pipeline/process-documents/actions.tsx +++ b/web/app/components/datasets/documents/create-from-pipeline/process-documents/actions.tsx @@ -5,11 +5,13 @@ import { RiArrowLeftLine } from '@remixicon/react' type ActionsProps = { onBack: () => void + runDisabled?: boolean onProcess: () => void } const Actions = ({ onBack, + runDisabled, onProcess, }: ActionsProps) => { const { t } = useTranslation() @@ -26,6 +28,7 @@ const Actions = ({