From a9f4f53f92a88c5075c1c97ae27c651280b33c9d Mon Sep 17 00:00:00 2001 From: Rebeccah Date: Wed, 15 Dec 2021 15:15:33 -0500 Subject: [PATCH] change logical ANDs into logical ORs for filtering based on status in the JobsList --- awx/ui/src/components/JobList/JobList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/src/components/JobList/JobList.js b/awx/ui/src/components/JobList/JobList.js index 9445e58c52..53af3f00b4 100644 --- a/awx/ui/src/components/JobList/JobList.js +++ b/awx/ui/src/components/JobList/JobList.js @@ -214,7 +214,7 @@ function JobList({ defaultParams, showTypeColumn = false }) { }, { name: t`Status`, - key: 'status', + key: 'or__status', options: [ [`new`, t`New`], [`pending`, t`Pending`],