From 54277e454822b0e6416e7375da2b86cb28dac83d Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 15 Dec 2022 16:39:47 -0800 Subject: [PATCH] IO-2131 Resolve job search select filtering issue. --- .../job-search-select/job-search-select.component.jsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/client/src/components/job-search-select/job-search-select.component.jsx b/client/src/components/job-search-select/job-search-select.component.jsx index 69cb83b23..180fb93dc 100644 --- a/client/src/components/job-search-select/job-search-select.component.jsx +++ b/client/src/components/job-search-select/job-search-select.component.jsx @@ -43,11 +43,9 @@ const JobSearchSelect = ( search: value, ...(convertedOnly || notExported ? { - variables: { - ...(convertedOnly ? { isConverted: true } : {}), - ...(notExported ? { notExported: true } : {}), - ...(notInvoiced ? { notInvoiced: true } : {}), - }, + ...(convertedOnly ? { isConverted: true } : {}), + ...(notExported ? { notExported: true } : {}), + ...(notInvoiced ? { notInvoiced: true } : {}), } : {}), }, @@ -79,6 +77,7 @@ const JobSearchSelect = ( disabled={disabled} showSearch autoFocus + allowClear style={{ width: "100%", }}