diff --git a/web/src/components/AgentTable.vue b/web/src/components/AgentTable.vue index 74abeb6d..ec8a9b97 100644 --- a/web/src/components/AgentTable.vue +++ b/web/src/components/AgentTable.vue @@ -419,7 +419,7 @@ export default { if (advancedFilter) { if (checks && !row.checks.has_failing_checks) return false; if (patches && !row.patches_pending) return false; - if (actions && row.pending_actions > 0) return false; + if (actions && row.pending_actions === 0) return false; if (reboot && !row.needs_reboot) return false; if (availability === "online" && row.status !== "online") return false; else if (availability === "offline" && row.status !== "overdue") return false;