From 5e3e4b1d47bd12c9b8fdbe045ab3c47f2f0e25e7 Mon Sep 17 00:00:00 2001 From: Florian Strohmaier Date: Thu, 16 Jan 2020 10:19:57 +0100 Subject: [PATCH] ServiceStatusBar: Remove `:` from total values --- library/Icingadb/Widget/ServiceStatusBar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icingadb/Widget/ServiceStatusBar.php b/library/Icingadb/Widget/ServiceStatusBar.php index b3239c5d..b0e2258e 100644 --- a/library/Icingadb/Widget/ServiceStatusBar.php +++ b/library/Icingadb/Widget/ServiceStatusBar.php @@ -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()