Skip to content

Commit

Permalink
Merge pull request #5214 from kobotoolbox/help-menu-display-bug
Browse files Browse the repository at this point in the history
Fix Help menu display bug - Task-1211
  • Loading branch information
RuthShryock authored Oct 30, 2024
2 parents 1fb54a2 + 884f811 commit 7034148
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 7034148

Please sign in to comment.