mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
fix: [Security:Explore:Users page]Add new timeline or template button dialog cannot be closed (#207232)
Closes: #205377 **Description** Users don't get stuck on elements, dialogs can be closed by pressing Esc. **Preconditions** Security -> Explore -> Users page. **Steps to reproduce** 1.Navigate to Add new timeline or template button. 2.Press Enter. 3.Press Esc. 4.Press Tab few times. 5.Observe page. **Changes made:** 1. Fixed typo, method should be called
This commit is contained in:
parent
b0b44bbd22
commit
e2c138bca1
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ export const AddTimelineButton = React.memo<AddTimelineButtonComponentProps>(({
|
|||
<EuiPopover
|
||||
button={plusButton}
|
||||
isOpen={isPopoverOpen}
|
||||
closePopover={() => setPopover}
|
||||
closePopover={() => setPopover(false)}
|
||||
repositionOnScroll
|
||||
>
|
||||
<EuiFlexGroup alignItems="flexStart" direction="column" gutterSize="none">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue