Merged in release/2022-12-16 (pull request #641)

IO-2131 Resolve job search select filtering issue.
This commit is contained in:
Patrick Fic
2022-12-16 01:02:45 +00:00

View File

@@ -43,11 +43,9 @@ const JobSearchSelect = (
search: value, search: value,
...(convertedOnly || notExported ...(convertedOnly || notExported
? { ? {
variables: { ...(convertedOnly ? { isConverted: true } : {}),
...(convertedOnly ? { isConverted: true } : {}), ...(notExported ? { notExported: true } : {}),
...(notExported ? { notExported: true } : {}), ...(notInvoiced ? { notInvoiced: true } : {}),
...(notInvoiced ? { notInvoiced: true } : {}),
},
} }
: {}), : {}),
}, },
@@ -79,6 +77,7 @@ const JobSearchSelect = (
disabled={disabled} disabled={disabled}
showSearch showSearch
autoFocus autoFocus
allowClear
style={{ style={{
width: "100%", width: "100%",
}} }}