Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / workflows / src / Form / WorkflowTransitionEditForm.php
index 1406025a72f7ef5ddab9ad169372d0fd249ba437..9d3a2231d630461ff6557dda346f88040f725fb9 100644 (file)
@@ -14,6 +14,8 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
  * Class WorkflowTransitionEditForm.
+ *
+ * @internal
  */
 class WorkflowTransitionEditForm extends EntityForm {
 
@@ -78,10 +80,9 @@ class WorkflowTransitionEditForm extends EntityForm {
 
     $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,
     ];