From dd1dd45ca60c3f8e6f51212ec766a6526788c629 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Sat, 5 Aug 2017 10:39:35 +0900 Subject: [PATCH] Issue #2897686 by xjm: Description for workflow label field does not add any information --- core/modules/workflows/src/Form/WorkflowAddForm.php | 1 - core/modules/workflows/src/Form/WorkflowEditForm.php | 1 - 2 files changed, 2 deletions(-) diff --git a/core/modules/workflows/src/Form/WorkflowAddForm.php b/core/modules/workflows/src/Form/WorkflowAddForm.php index 91b0b3726a4..09073a67e18 100644 --- a/core/modules/workflows/src/Form/WorkflowAddForm.php +++ b/core/modules/workflows/src/Form/WorkflowAddForm.php @@ -53,7 +53,6 @@ class WorkflowAddForm extends EntityForm { '#title' => $this->t('Label'), '#maxlength' => 255, '#default_value' => $workflow->label(), - '#description' => $this->t('Label for the Workflow.'), '#required' => TRUE, ]; diff --git a/core/modules/workflows/src/Form/WorkflowEditForm.php b/core/modules/workflows/src/Form/WorkflowEditForm.php index 2f34dc6f1e1..47e0b0315be 100644 --- a/core/modules/workflows/src/Form/WorkflowEditForm.php +++ b/core/modules/workflows/src/Form/WorkflowEditForm.php @@ -60,7 +60,6 @@ class WorkflowEditForm extends EntityForm { '#title' => $this->t('Label'), '#maxlength' => 255, '#default_value' => $workflow->label(), - '#description' => $this->t('Label for the Workflow.'), '#required' => TRUE, ];