diff --git a/core/modules/workflows/src/Form/WorkflowAddForm.php b/core/modules/workflows/src/Form/WorkflowAddForm.php index 91b0b3726a441af8d3d18f56b99cadae9ce08b3c..09073a67e186cac33acb3a4c0e8ee4c2d1831510 100644 --- a/core/modules/workflows/src/Form/WorkflowAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowAddForm.php @@ -53,7 +53,6 @@ public function form(array $form, FormStateInterface $form_state) { '#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 2f34dc6f1e1d180891b9e4183e8ef91c16c09f14..47e0b0315beeee44a3ad8bdd6cb1bfeef51177f0 100644 --- a/core/modules/workflows/src/Form/WorkflowEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowEditForm.php @@ -60,7 +60,6 @@ public function form(array $form, FormStateInterface $form_state) { '#title' => $this->t('Label'), '#maxlength' => 255, '#default_value' => $workflow->label(), - '#description' => $this->t('Label for the Workflow.'), '#required' => TRUE, ];