Skip to content

Commit

Permalink
bug(Select): Remove checkbox from no results found option (#10163)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 authored Mar 26, 2024
1 parent 38736a1 commit 5b33290
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ export const SelectMultiTypeaheadCheckbox: React.FunctionComponent = () => {
// When no options are found after filtering, display 'No results found'
if (!newSelectOptions.length) {
newSelectOptions = [
{ isDisabled: false, children: `No results found for "${inputValue}"`, value: 'no results' }
{
isDisabled: false,
children: `No results found for "${inputValue}"`,
value: 'no results',
hasCheckbox: false
}
];
}

Expand Down

0 comments on commit 5b33290

Please sign in to comment.