mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-11 15:03:06 -05:00
ServiceNode: show timeSince
This commit is contained in:
parent
944fb7741a
commit
96d8949f52
1 changed files with 2 additions and 1 deletions
|
|
@ -36,7 +36,8 @@ class ServiceNode extends Node
|
|||
if ($this->bp->hasBackendName()) {
|
||||
$params['backend'] = $this->bp->getBackendName();
|
||||
}
|
||||
return $view->qlink($this->getAlias(), 'monitoring/service/show', $params);
|
||||
$link = $view->qlink($this->getAlias(), 'monitoring/service/show', $params);
|
||||
return preg_replace('#</a>#', ' ' . $view->timeSince($this->getLastStateChange()) . '</a>', $link);
|
||||
}
|
||||
|
||||
protected function getActionIcons($view)
|
||||
|
|
|
|||
Loading…
Reference in a new issue