Skip to content

Commit

Permalink
changed the MulitSelect to Filterable MultiSelect
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzgrewal committed Nov 4, 2024
1 parent 1a3d476 commit edb7eed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
Checkbox,
CheckboxGroup,
Dropdown,
MultiSelect,
TextInput,
FormLabel,
Tooltip,
Expand All @@ -19,6 +18,7 @@ import * as Icons from "@carbon/icons-react";
import { useOpeningFiltersQuery } from "../../../../services/queries/search/openingQueries";
import { useOpeningsSearch } from "../../../../contexts/search/OpeningsSearch";
import { Button } from "@carbon/react";
import { FilterableMultiSelect } from "@carbon/react";

interface AdvancedSearchDropdownProps {
toggleShowFilters: () => void; // Function to be passed as a prop
Expand Down Expand Up @@ -160,7 +160,7 @@ const AdvancedSearchDropdown: React.FC<AdvancedSearchDropdownProps> = ({

<Row className="mb-3">
<Column lg={8}>
<MultiSelect
<FilterableMultiSelect
label="Enter or choose an org unit"
id="orgunit-multiselect"
className="multi-select"
Expand All @@ -173,7 +173,7 @@ const AdvancedSearchDropdown: React.FC<AdvancedSearchDropdownProps> = ({
/>
</Column>
<Column lg={8}>
<MultiSelect
<FilterableMultiSelect
label="Enter or choose a category"
id="category-multiselect"
className="multi-select"
Expand Down

0 comments on commit edb7eed

Please sign in to comment.