From 3c62b5b7ee2b661d19b9b727efb239dee6db2fb7 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 8 Apr 2022 13:54:18 +0200 Subject: [PATCH] TacticalController: Remove comment and obsolete `host` join --- application/controllers/TacticalController.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application/controllers/TacticalController.php b/application/controllers/TacticalController.php index 501c78f0..2e1ca714 100644 --- a/application/controllers/TacticalController.php +++ b/application/controllers/TacticalController.php @@ -24,8 +24,7 @@ class TacticalController extends Controller $db = $this->getDb(); $hoststateSummary = HoststateSummary::on($db)->with('state'); - // With relation `host` because otherwise the filter editor only presents service cols - $servicestateSummary = ServicestateSummary::on($db)->with(['state', 'host']); + $servicestateSummary = ServicestateSummary::on($db)->with(['state']); $this->handleSearchRequest($servicestateSummary);