diff --git a/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesDropdown/FunnelIssuesDropdown.tsx b/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesDropdown/FunnelIssuesDropdown.tsx index 361337443..2dade061d 100644 --- a/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesDropdown/FunnelIssuesDropdown.tsx +++ b/frontend/app/components/Dashboard/components/Funnels/FunnelIssuesDropdown/FunnelIssuesDropdown.tsx @@ -49,7 +49,8 @@ function FunnelIssuesDropdown() { } } - const onClickOutside = () => { + const onClickOutside = (e: any) => { + if (e.target.id === 'dd-button') return; if (isOpen) { setTimeout(() => { setIsOpen(false); @@ -85,21 +86,23 @@ function FunnelIssuesDropdown() { IndicatorSeparator: (): any => null, IndicatorsContainer: (): any => null, Control: ({ children, ...props }: any) => ( - - - { children } - - - + + + { children } + + + + ), Placeholder: (): any => null, SingleValue: (): any => null,