diff --git a/core/modules/workflows/src/Form/WorkflowStateAddForm.php b/core/modules/workflows/src/Form/WorkflowStateAddForm.php index ab4a4c1c6501f6e279b6676a985e4f12700fb9b5..ab7b3618bdf36b57f40090f731dfea8837222677 100644 --- a/core/modules/workflows/src/Form/WorkflowStateAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowStateAddForm.php @@ -60,10 +60,9 @@ public function form(array $form, FormStateInterface $form_state) { $form['label'] = [ '#type' => 'textfield', - '#title' => $this->t('Label'), + '#title' => $this->t('State label'), '#maxlength' => 255, '#default_value' => '', - '#description' => $this->t('Label for the state.'), '#required' => TRUE, ]; diff --git a/core/modules/workflows/src/Form/WorkflowStateEditForm.php b/core/modules/workflows/src/Form/WorkflowStateEditForm.php index a04998d2873a7ab1bce27cb7077c1a82196026d2..940fb8c14faa946083bc059a10aafb03fe937171 100644 --- a/core/modules/workflows/src/Form/WorkflowStateEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowStateEditForm.php @@ -77,10 +77,9 @@ public function form(array $form, FormStateInterface $form_state) { $form['label'] = [ '#type' => 'textfield', - '#title' => $this->t('Label'), + '#title' => $this->t('State label'), '#maxlength' => 255, '#default_value' => $state->label(), - '#description' => $this->t('Label for the state.'), '#required' => TRUE, ]; diff --git a/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php b/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php index 84522929892a0278ac89bdd53ea5cb49d441a55b..9580e27808c39d4c620329a74393ea166efbbe14 100644 --- a/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowTransitionAddForm.php @@ -61,10 +61,9 @@ public function form(array $form, FormStateInterface $form_state) { $form['label'] = [ '#type' => 'textfield', - '#title' => $this->t('Label'), + '#title' => $this->t('Transition label'), '#maxlength' => 255, '#default_value' => '', - '#description' => $this->t('Label for the transition.'), '#required' => TRUE, ]; diff --git a/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php b/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php index 1406025a72f7ef5ddab9ad169372d0fd249ba437..63b2ab47995c455e4b7a32e2155476818ea2cde5 100644 --- a/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowTransitionEditForm.php @@ -78,10 +78,9 @@ public function form(array $form, FormStateInterface $form_state) { $form['label'] = [ '#type' => 'textfield', - '#title' => $this->t('Label'), + '#title' => $this->t('Transition label'), '#maxlength' => 255, '#default_value' => $transition->label(), - '#description' => $this->t('Label for the transition.'), '#required' => TRUE, ];