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 42c0be5db..248474580 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 @@ -1,6 +1,6 @@ import { LoadingOutlined } from "@ant-design/icons"; import { useLazyQuery } from "@apollo/client"; -import { Empty, Select } from "antd"; +import { Empty, Select, Space, Tag } from "antd"; import _ from "lodash"; import React, { forwardRef, useEffect } from "react"; import { useTranslation } from "react-i18next"; @@ -80,13 +80,18 @@ const JobSearchSelect = ( {theOptions ? theOptions.map((o) => ( )) : null} diff --git a/client/src/graphql/jobs.queries.js b/client/src/graphql/jobs.queries.js index 1546da001..7a8974a5b 100644 --- a/client/src/graphql/jobs.queries.js +++ b/client/src/graphql/jobs.queries.js @@ -1043,6 +1043,7 @@ export const SEARCH_JOBS_FOR_AUTOCOMPLETE = gql` v_make_desc v_model_desc v_model_yr + status } } `;