ServiceStatusBar: Remove : from total values

This commit is contained in:
Florian Strohmaier 2020-01-16 10:19:57 +01:00
parent 2bde31bb81
commit 5e3e4b1d47

View file

@ -9,7 +9,7 @@ class ServiceStatusBar extends BaseStatusBar
{
protected function assembleTotal(BaseHtmlElement $total)
{
$total->add(sprintf('%d Services:', $this->summary->services_total));
$total->add(sprintf('%d Services', $this->summary->services_total));
}
protected function createStateBadges()