From 395ba5de2b12005e88948aca0a979ec6e679202e Mon Sep 17 00:00:00 2001 From: catch <6915-catch@users.noreply.drupalcode.org> Date: Thu, 13 Mar 2025 12:42:48 +0000 Subject: [PATCH] Issue #3469736 by samit.310@gmail.com, acbramley, longwave: Title field description override in BlockContentBlock::blockForm() does nothing --- .../block_content/src/Plugin/Block/BlockContentBlock.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php b/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php index 7c862f499fd4..4a7328e4a35f 100644 --- a/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php +++ b/core/modules/block_content/src/Plugin/Block/BlockContentBlock.php @@ -139,9 +139,7 @@ public function defaultConfiguration() { } /** - * Overrides \Drupal\Core\Block\BlockBase::blockForm(). - * - * Adds body and description fields to the block configuration form. + * {@inheritdoc} */ public function blockForm($form, FormStateInterface $form_state) { $block = $this->getEntity(); @@ -158,7 +156,6 @@ public function blockForm($form, FormStateInterface $form_state) { '#default_value' => $this->configuration['view_mode'], '#access' => (count($options) > 1), ]; - $form['title']['#description'] = $this->t('The title of the block as shown to the user.'); return $form; } -- GitLab