From 4a19e4db462fef23ec51d0e16fa6688aa470646c Mon Sep 17 00:00:00 2001 From: David Remer Date: Wed, 10 Aug 2022 08:53:23 +0300 Subject: [PATCH] Share Step name with editor application [MAILPOET-4445] --- mailpoet/lib/AdminPages/Pages/AutomationEditor.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mailpoet/lib/AdminPages/Pages/AutomationEditor.php b/mailpoet/lib/AdminPages/Pages/AutomationEditor.php index da0834322f..41f215534a 100644 --- a/mailpoet/lib/AdminPages/Pages/AutomationEditor.php +++ b/mailpoet/lib/AdminPages/Pages/AutomationEditor.php @@ -64,6 +64,7 @@ class AutomationEditor { 'steps' => array_map(function (Step $step) { return [ 'id' => $step->getId(), + 'name' => $step->getName(), 'type' => $step->getType(), 'key' => $step->getKey(), 'next_step_id' => $step->getNextStepId(),