diff --git a/core/modules/views/src/Plugin/views/field/EntityOperations.php b/core/modules/views/src/Plugin/views/field/EntityOperations.php index c766980..7dfbe9f 100644 --- a/core/modules/views/src/Plugin/views/field/EntityOperations.php +++ b/core/modules/views/src/Plugin/views/field/EntityOperations.php @@ -135,8 +135,9 @@ public function render(ResultRow $values) { * {@inheritdoc} */ public function query() { - // There is nothing to ensure or add for this handler other than language, - // so we purposefully do not call parent::query(). + // We purposefully do not call parent::query() because we do not want the + // default query behavior for Views fields. Instead, let the entity + // translation renderer provide the correct query behavior. if ($this->languageManager->isMultilingual()) { $this->getEntityTranslationRenderer()->query($this->query, $this->relationship); }