Skip to content

Commit 176c0cd

Browse files
Merge branch 'Refine-tag-name-filter' of https://github.com/DvoraShechter1/tackle2-ui into Refine-tag-name-filter
2 parents 1663e88 + 22927b3 commit 176c0cd

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

client/src/app/components/FilterToolbar/MultiselectFilterControl.tsx

-44
Original file line numberDiff line numberDiff line change
@@ -270,50 +270,6 @@ export const MultiselectFilterControl = <TItem,>({
270270
isOpen={isFilterDropdownOpen}
271271
>
272272
{groups && groups.length > 0 && (
273-
// <SelectList id={withPrefix("select-typeahead-listbox")}>
274-
// {groups.map((groupLabel) => (
275-
// <React.Fragment key={groupLabel}>
276-
// <SelectOption
277-
// isDisabled
278-
// hasCheckbox={false}
279-
// key={`label-${groupLabel}`}
280-
// >
281-
// <strong>{groupLabel}</strong>
282-
// </SelectOption>
283-
284-
// {filteredOptions
285-
// .filter((option) => option.groupLabel === groupLabel)
286-
// .map(({ label, value, optionProps = {} }, index) => (
287-
// <SelectOption
288-
// {...optionProps}
289-
// {...(!optionProps.isDisabled && {
290-
// hasCheckbox: true,
291-
// })}
292-
// key={value}
293-
// id={withPrefix(`option-${index}`)}
294-
// value={value}
295-
// isFocused={focusedItemIndex === index}
296-
// isSelected={filterValue?.includes(value)}
297-
// >
298-
// {label ?? value}
299-
// </SelectOption>
300-
// ))}
301-
// </React.Fragment>
302-
// ))}
303-
304-
// {filteredOptions.length === 0 && (
305-
// <SelectOption
306-
// isDisabled
307-
// hasCheckbox={false}
308-
// key={NO_RESULTS}
309-
// value={NO_RESULTS}
310-
// isSelected={false}
311-
// >
312-
// {`No results found for "${inputValue}"`}
313-
// </SelectOption>
314-
// )}
315-
// </SelectList>
316-
317273
<SelectList id={withPrefix("select-typeahead-listbox")}>
318274
{groups.map((groupLabel) => (
319275
<React.Fragment key={groupLabel}>

0 commit comments

Comments
 (0)