Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / workflows / src / Form / WorkflowTransitionAddForm.php
index 84522929892a0278ac89bdd53ea5cb49d441a55b..1ac8de54b405c99defea09983d447bbcb9f9e990 100644 (file)
@@ -13,6 +13,8 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
  * Class WorkflowTransitionAddForm.
+ *
+ * @internal
  */
 class WorkflowTransitionAddForm extends EntityForm {
 
@@ -61,10 +63,9 @@ class WorkflowTransitionAddForm extends EntityForm {
 
     $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,
     ];