Skip to content
Snippets Groups Projects

Issue #3229479: Entity_lookup taxonomy_term restricted by VID

1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -247,7 +247,8 @@ class EntityLookup extends ProcessPluginBase implements ContainerFactoryPluginIn
$query = $this->entityTypeManager->getStorage($this->lookupEntityType)
->getQuery()
->accessCheck($this->accessCheck)
->condition($this->lookupValueKey, $value, $operator);
->condition($this->lookupValueKey, $value, $operator)
->condition('vid', $this->lookupTaxonomyKey);
// Sqlite and possibly others returns data in a non-deterministic order.
// Make it deterministic.
if ($multiple) {
Loading