work on render box and list

This commit is contained in:
2021-10-08 18:28:02 +02:00
parent 72e9346b6b
commit e465170c7b
6 changed files with 27 additions and 2 deletions

View File

@@ -634,7 +634,7 @@ class ThirdParty implements TrackCreationInterface, TrackUpdateInterface
public function addChild(ThirdParty $child): self
{
$this->children[] = $child;
$child->setParent($this);
$child->setParent($this)->setKind(ThirdParty::KIND_CHILD);;
return $this;
}