mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 16:54:06 +02:00
ObjectsTableSetMembers: fix uuid in link
This commit is contained in:
parent
7267953e13
commit
fb1a23fb01
@ -11,6 +11,7 @@ use Icinga\Module\Director\Db\DbSelectParenthesis;
|
|||||||
use Icinga\Module\Director\Db\IcingaObjectFilterHelper;
|
use Icinga\Module\Director\Db\IcingaObjectFilterHelper;
|
||||||
use Icinga\Module\Director\Objects\IcingaObject;
|
use Icinga\Module\Director\Objects\IcingaObject;
|
||||||
use Icinga\Module\Director\Restriction\FilterByNameRestriction;
|
use Icinga\Module\Director\Restriction\FilterByNameRestriction;
|
||||||
|
use Ramsey\Uuid\Uuid;
|
||||||
|
|
||||||
class ObjectsTableSetMembers extends ZfQueryBasedTable
|
class ObjectsTableSetMembers extends ZfQueryBasedTable
|
||||||
{
|
{
|
||||||
@ -96,7 +97,7 @@ class ObjectsTableSetMembers extends ZfQueryBasedTable
|
|||||||
{
|
{
|
||||||
$url = Url::fromPath('director/service/edit', [
|
$url = Url::fromPath('director/service/edit', [
|
||||||
'name' => $row->object_name,
|
'name' => $row->object_name,
|
||||||
'uuid' => $row->uuid,
|
'uuid' => Uuid::fromBytes($row->uuid)->toString(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return static::tr([
|
return static::tr([
|
||||||
|
Loading…
x
Reference in New Issue
Block a user