ObjectsTableEndpoint: merge arrays, it fails with

...with ipl
This commit is contained in:
Thomas Gelf 2019-09-12 00:15:33 +02:00
parent 83907eb8fa
commit 686f168ee3

View File

@ -54,7 +54,7 @@ class ObjectsTableEndpoint extends ObjectsTable
public function getRowClasses($row)
{
if ($row->object_name === $this->deploymentEndpoint) {
return array('deployment-endpoint', parent::getRowClasses($row));
return array_merge(array('deployment-endpoint'), parent::getRowClasses($row));
} else {
return null;
}