Skip to content

Commit

Permalink
fix search overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
barbara-chaves authored and David Inga committed May 18, 2023
1 parent f198c91 commit 1a9e1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/tree-select/search-overlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const SearchOverlay = ({ options, onChange }: SearchOverlayProps) => {
'text-gray-900 cursor-pointer hover:bg-navy-50': !isSelected && !disabled,
})}
key={key}
onClick={!disabled && getHandleChange(key as string)}
onClick={() => !disabled && getHandleChange(key as string)}
>
{matchingParts.map(({ value, isMatch }, i) => {
return (
Expand Down

1 comment on commit 1a9e1de

@vercel
Copy link

@vercel vercel bot commented on 1a9e1de May 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

landgriffon-client – ./client

landgriffon-client-git-dev-vizzuality1.vercel.app
landgriffon-client-vizzuality1.vercel.app
landgriffon-client.vercel.app

Please sign in to comment.