diff --git a/app/View/Elements/Events/View/row_object.ctp b/app/View/Elements/Events/View/row_object.ctp index 1022b609c..9889612ee 100644 --- a/app/View/Elements/Events/View/row_object.ctp +++ b/app/View/Elements/Events/View/row_object.ctp @@ -36,6 +36,7 @@ $objectId = intval($object['id']); $notes = !empty($object['Note']) ? $object['Note'] : []; $opinions = !empty($object['Opinion']) ? $object['Opinion'] : []; $relationships = !empty($object['Relationship']) ? $object['Relationship'] : []; + $relationshipsInbound = !empty($object['RelationshipInbound']) ? $object['RelationshipInbound'] : []; echo $this->element('genericElements/Analyst_data/generic', [ 'analyst_data' => ['notes' => $notes, 'opinions' => $opinions, 'relationships_outbound' => $relationships, 'relationships_inbound' => $relationshipsInbound], 'object_uuid' => $object['uuid'],