fix: [attribute:hvoerEnrichment] Include even tags

pull/8692/head
Sami Mokaddem 2022-10-17 14:33:41 +02:00
parent e41a9d2bb7
commit 9b34115ab7
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -2417,7 +2417,7 @@ class AttributesController extends AppController
public function hoverEnrichment($id, $persistent = false)
{
$attribute = $this->Attribute->fetchAttributes($this->Auth->user(), array('conditions' => array('Attribute.id' => $id), 'flatten' => 1));
$attribute = $this->Attribute->fetchAttributes($this->Auth->user(), array('conditions' => array('Attribute.id' => $id), 'flatten' => 1, 'includeEventTags' => 1));
if (empty($attribute)) {
throw new NotFoundException(__('Invalid Attribute'));
}