diff --git a/packages/react-ui/src/app/features/builder/run-details/flow-step-details-card-item.tsx b/packages/react-ui/src/app/features/builder/run-details/flow-step-details-card-item.tsx index 288458c397..ea245f5091 100644 --- a/packages/react-ui/src/app/features/builder/run-details/flow-step-details-card-item.tsx +++ b/packages/react-ui/src/app/features/builder/run-details/flow-step-details-card-item.tsx @@ -6,7 +6,7 @@ import { CollapsibleContent, CollapsibleTrigger, } from '@openops/components/ui'; -import { ChevronRight } from 'lucide-react'; +import { ChevronRight, SquareX } from 'lucide-react'; import React, { useCallback, useMemo } from 'react'; import { blocksHooks } from '@/app/features/blocks/lib/blocks-hook'; @@ -18,6 +18,7 @@ import { ActionType, FlagId, flowHelper } from '@openops/shared'; import { flagsHooks } from '@/app/common/hooks/flags-hooks'; import { useCenterWorkflowViewOntoStep } from '@/app/features/builder/hooks/center-workflow-view-onto-step'; import { StepStatusIcon } from '@/app/features/flow-runs/components/step-status-icon'; +import { t } from 'i18next'; import { RUN_DETAILS_STEP_CARD_ID_PREFIX } from './constants'; import { LoopIterationInput } from './loop-iteration-input'; @@ -145,10 +146,24 @@ const FlowStepDetailsCardItem = ({ /> )} - {'logo'} -
{`${stepIndex + 1}. ${ - step?.displayName - }`}
+ {stepMetadata?.logoUrl ? ( + {'logo'} + ) : ( + + )} + +
+ {(stepIndex !== -1 ? `${stepIndex + 1}. ` : '') + + (step?.displayName ?? t('Deleted Step'))} +
{isLoopStep && (