diff --git a/core/modules/workflows/src/Form/WorkflowEditForm.php b/core/modules/workflows/src/Form/WorkflowEditForm.php index 764c0c9..9a224eb 100644 --- a/core/modules/workflows/src/Form/WorkflowEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowEditForm.php @@ -24,6 +24,8 @@ public function form(array $form, FormStateInterface $form_state) { /* @var \Drupal\workflows\WorkflowInterface $workflow */ $workflow = $this->entity; + $form['#title'] = $this->t('Edit %label workflow', ['%label' => $workflow->label()]); + $form['label'] = [ '#type' => 'textfield', '#title' => $this->t('Label'),