core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php b/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php index 56631cc..29c1de9 100644 --- a/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php +++ b/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php @@ -150,7 +150,7 @@ protected function loadFieldItems(array $entities) { $translation = $entity->getTranslation($langcode); foreach ($translation as $field_name => $items) { if ($items->getFieldDefinition() instanceof FieldInstanceConfigInterface && !$items->isEmpty()) { - $data[$langcode][$field_name][$delta] = $items->getValue(); + $data[$langcode][$field_name] = $items->getValue(); } } }