diff --git a/src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/FilterController.php b/src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/FilterController.php index 7af4676eb..159bb4303 100644 --- a/src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/FilterController.php +++ b/src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/FilterController.php @@ -37,7 +37,7 @@ class FilterController extends FilterBaseController $filter_funct = function ($record) use ($category) { return empty($category) || array_intersect(explode(',', $record->categories), $category); }; - return $this->searchBase("rules.rule", ['enabled', 'sequence', 'description'], "sequence", $filter_funct); + return $this->searchBase("rules.rule", ['enabled', 'sequence', 'action', 'description'], "sequence", $filter_funct); } public function setRuleAction($uuid)