change logical ANDs into logical ORs for filtering based on status in the JobsList

This commit is contained in:
Rebeccah
2021-12-15 15:15:33 -05:00
parent 1205d71f4b
commit a9f4f53f92

View File

@@ -214,7 +214,7 @@ function JobList({ defaultParams, showTypeColumn = false }) {
},
{
name: t`Status`,
key: 'status',
key: 'or__status',
options: [
[`new`, t`New`],
[`pending`, t`Pending`],