diff --git a/core/modules/block/src/BlockBase.php b/core/modules/block/src/BlockBase.php index 19461e6..6207935 100644 --- a/core/modules/block/src/BlockBase.php +++ b/core/modules/block/src/BlockBase.php @@ -294,7 +294,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta // @todo Determine if there is a better way to rename the conditions. if (isset($form['visibility']['node_type'])) { $form['visibility']['node_type']['#title'] = $this->t('Content types'); - $form['visibility']['node_type']['vocabularies']['#title'] = $this->t('Content types'); + $form['visibility']['node_type']['bundles']['#title'] = $this->t('Content types'); $form['visibility']['node_type']['negate']['#type'] = 'value'; $form['visibility']['node_type']['negate']['#title_display'] = 'invisible'; $form['visibility']['node_type']['negate']['#value'] = $form['visibility']['node_type']['negate']['#default_value'];