[ML] Fixing change point menu which can get stuck open (#186063)

The popover menu can sometimes get stuck open. This is possibly an issue
with the `EuiPopover` component.

To reproduce, double click the menu button.


92601fc2-5aa1-4b5c-a831-6ccb3bef69b9
This commit is contained in:
James Gowdy 2024-06-12 11:21:47 +01:00 committed by GitHub
parent 3ae7ba5ad9
commit 447e6ec043
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -567,7 +567,7 @@ const FieldPanel: FC<FieldPanelProps> = ({
)}
iconType="boxesHorizontal"
color="text"
onClick={setIsActionMenuOpen.bind(null, true)}
onClick={setIsActionMenuOpen.bind(null, !isActionMenuOpen)}
/>
}
isOpen={isActionMenuOpen}