Skip to content

Commit

Permalink
ObjectsTableSetMembers: fix uuid in link
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Gelf committed Oct 12, 2023
1 parent 7267953 commit fb1a23f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/Director/Web/Table/ObjectsTableSetMembers.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
use Icinga\Module\Director\Db\IcingaObjectFilterHelper;
use Icinga\Module\Director\Objects\IcingaObject;
use Icinga\Module\Director\Restriction\FilterByNameRestriction;
use Ramsey\Uuid\Uuid;

class ObjectsTableSetMembers extends ZfQueryBasedTable
{
Expand Down Expand Up @@ -96,7 +97,7 @@ public function renderRow($row)
{
$url = Url::fromPath('director/service/edit', [
'name' => $row->object_name,
'uuid' => $row->uuid,
'uuid' => Uuid::fromBytes($row->uuid)->toString(),
]);

return static::tr([
Expand Down

0 comments on commit fb1a23f

Please sign in to comment.