Skip to content

Commit

Permalink
Fixed parent path delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino committed Oct 31, 2024
1 parent 6768325 commit f07b80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/EntityController.php
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ private function getAllChildren(Entity $entity): array {
// Add entity to array
$data = [];
$data['_name']=$entity->name;
$data['_parent']=implode("\\", $entity->getAncestorsAttribute());
$data['_parent']=implode(EntityImporter::PARENT_DELIMITER, $entity->getAncestorsAttribute());
$data['_entity_type']= $entity->entity_type->thesaurus_concept->getActiveLocaleLabel();

$entityData = $entity->getData();
Expand Down

0 comments on commit f07b80d

Please sign in to comment.