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