diff --git a/core/modules/workspaces/src/EntityOperations.php b/core/modules/workspaces/src/EntityOperations.php index 3508dcd714e..e3e2629533b 100644 --- a/core/modules/workspaces/src/EntityOperations.php +++ b/core/modules/workspaces/src/EntityOperations.php @@ -251,7 +251,7 @@ public function entityPredelete(EntityInterface $entity) { */ public function entityFormAlter(array &$form, FormStateInterface $form_state, $form_id) { $entity = $form_state->getFormObject()->getEntity(); - if ($this->shouldSkipOperations($entity) || !$this->workspaceInfo->isEntitySupported($entity)) { + if ($this->workspaceInfo->isEntityIgnored($entity) || !$this->workspaceInfo->isEntitySupported($entity)) { return; }