From 884f81193cfbc02cabf0d6c7cf42ef81d96d925f Mon Sep 17 00:00:00 2001 From: RuthShryock Date: Wed, 30 Oct 2024 13:09:05 -0400 Subject: [PATCH] fix click handler bug which was blocking the help menu from being displayed --- jsapp/js/components/support/helpBubble.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jsapp/js/components/support/helpBubble.tsx b/jsapp/js/components/support/helpBubble.tsx index 295c7437aa..87372726b3 100644 --- a/jsapp/js/components/support/helpBubble.tsx +++ b/jsapp/js/components/support/helpBubble.tsx @@ -74,7 +74,8 @@ class HelpBubble extends React.Component<{}, HelpBubbleState> { $targetEl.parents('.help-bubble__popup').length === 0 && $targetEl.parents('.help-bubble__popup-content').length === 0 && $targetEl.parents('.help-bubble__row').length === 0 && - $targetEl.parents('.help-bubble__row-wrapper').length === 0 + $targetEl.parents('.help-bubble__row-wrapper').length === 0 && + $targetEl.parents('.help-bubble').length === 0 ) { this.close(); }