Skip to content

Commit

Permalink
fix click handler bug which was blocking the help menu from being dis…
Browse files Browse the repository at this point in the history
…played
  • Loading branch information
RuthShryock committed Oct 30, 2024
1 parent 1fb54a2 commit 884f811
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsapp/js/components/support/helpBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 884f811

Please sign in to comment.