diff --git a/core/modules/workflows/src/Form/WorkflowAddForm.php b/core/modules/workflows/src/Form/WorkflowAddForm.php index 91b0b3726a4..09073a67e18 100644 --- a/core/modules/workflows/src/Form/WorkflowAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowAddForm.php @@ -53,7 +53,6 @@ class WorkflowAddForm extends EntityForm { '#title' => $this->t('Label'), '#maxlength' => 255, '#default_value' => $workflow->label(), - '#description' => $this->t('Label for the Workflow.'), '#required' => TRUE, ]; diff --git a/core/modules/workflows/src/Form/WorkflowEditForm.php b/core/modules/workflows/src/Form/WorkflowEditForm.php index 2f34dc6f1e1..47e0b0315be 100644 --- a/core/modules/workflows/src/Form/WorkflowEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowEditForm.php @@ -60,7 +60,6 @@ class WorkflowEditForm extends EntityForm { '#title' => $this->t('Label'), '#maxlength' => 255, '#default_value' => $workflow->label(), - '#description' => $this->t('Label for the Workflow.'), '#required' => TRUE, ];