diff --git a/app/Integrations/Core/System.php b/app/Integrations/Core/System.php index 139a1e9a..b1f7183c 100644 --- a/app/Integrations/Core/System.php +++ b/app/Integrations/Core/System.php @@ -65,7 +65,7 @@ class System implements SystemContract $totalComponents = Component::enabled()->authenticated($includePrivate)->count(); $majorOutages = Component::enabled()->authenticated($includePrivate)->status(4)->count(); $majorOutageRate = (int) $this->config->get('setting.major_outage_rate', '50'); - $isMajorOutage = $totalComponents ? ($majorOutages / $totalComponents)*100 >= $majorOutageRate : false; + $isMajorOutage = $totalComponents ? ($majorOutages / $totalComponents) * 100 >= $majorOutageRate : false; // Default data $status = [