Skip to content

Commit

Permalink
[ML] Fixing change point menu which can get stuck open (#186063)
Browse files Browse the repository at this point in the history
The popover menu can sometimes get stuck open. This is possibly an issue
with the `EuiPopover` component.

To reproduce, double click the menu button.


https://github.com/elastic/kibana/assets/22172091/92601fc2-5aa1-4b5c-a831-6ccb3bef69b9
  • Loading branch information
jgowdyelastic authored Jun 12, 2024
1 parent 3ae7ba5 commit 447e6ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ const FieldPanel: FC<FieldPanelProps> = ({
)}
iconType="boxesHorizontal"
color="text"
onClick={setIsActionMenuOpen.bind(null, true)}
onClick={setIsActionMenuOpen.bind(null, !isActionMenuOpen)}
/>
}
isOpen={isActionMenuOpen}
Expand Down

0 comments on commit 447e6ec

Please sign in to comment.