only in patch2: unchanged: --- a/core/modules/content_moderation/src/ModerationInformation.php +++ b/core/modules/content_moderation/src/ModerationInformation.php @@ -212,7 +212,7 @@ public function getUnsupportedFeatures(EntityTypeInterface $entity_type) { public function getOriginalState(ContentEntityInterface $entity) { $state = NULL; $workflow_type = $this->getWorkflowForEntity($entity)->getTypePlugin(); - if (!$entity->isNew() && !$this->isFirstTimeModeration($entity)) { + if (!$entity->isNew() && !$entity->isNewTranslation() && !$this->isFirstTimeModeration($entity)) { /** @var \Drupal\Core\Entity\ContentEntityInterface $original_entity */ $original_entity = $this->entityTypeManager->getStorage($entity->getEntityTypeId())->loadRevision($entity->getLoadedRevisionId()); if (!$entity->isDefaultTranslation() && $original_entity->hasTranslation($entity->language()->getId())) {