diff --git a/mailpoet/assets/js/src/automation/editor/components/workflow/step.tsx b/mailpoet/assets/js/src/automation/editor/components/workflow/step.tsx index ca41ac05a0..4e1f0a7e0f 100644 --- a/mailpoet/assets/js/src/automation/editor/components/workflow/step.tsx +++ b/mailpoet/assets/js/src/automation/editor/components/workflow/step.tsx @@ -81,10 +81,14 @@ export function Step({ step, isSelected }: Props): JSX.Element {
- {stepTypeData.title} + {step.type !== 'trigger' + ? stepTypeData.title + : __('Trigger', 'mailpoet')}
- {stepTypeData.subtitle(step)} + {step.type !== 'trigger' + ? stepTypeData.subtitle(step) + : stepTypeData.title}