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