SingleServiceInfo: fix URL for single services

This affected clicking "modify" in the monitoring module
This commit is contained in:
Thomas Gelf 2021-09-09 16:25:28 +02:00
parent de4378cfd3
commit 83c12fefcf
1 changed files with 3 additions and 3 deletions

View File

@ -57,9 +57,9 @@ class SingleServiceInfo implements ServiceInfo
public function getUrl()
{
return Url::fromPath('director/host/service', [
'name' => $this->hostName,
'service' => $this->serviceName,
return Url::fromPath('director/service/edit', [
'host' => $this->hostName,
'name' => $this->serviceName,
]);
}