mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-01 11:19:34 -05:00
Node: show node alias instead of node name
This commit is contained in:
parent
2969e53502
commit
6e1d546225
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ abstract class Node
|
||||||
|
|
||||||
public function renderLink($view)
|
public function renderLink($view)
|
||||||
{
|
{
|
||||||
return '<a href="#">' . $this->name . '</a>';
|
return '<a href="#">' . ($this->hasAlias() ? $this->getAlias() : $this->name) . '</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getIcons($view)
|
public function getIcons($view)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue