Skip to content

Commit

Permalink
[Unified search] Fixes the problem with the button popover buttons on…
Browse files Browse the repository at this point in the history
… DSL filters (elastic#142402)

* [Unified search] Fixes the problem with the button popover buttons on DSL filters

* Add comment

* Apply comments
  • Loading branch information
stratoula authored and WafaaNasr committed Oct 11, 2022
1 parent c48fa5f commit 68d80a2
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,13 @@ class FilterEditorUI extends Component<FilterEditorProps, State> {
</div>

<EuiPopoverFooter paddingSize="s">
<EuiFlexGroup direction="rowReverse" alignItems="center" responsive={false}>
{/* Adding isolation here fixes this bug https://github.com/elastic/kibana/issues/142211 */}
<EuiFlexGroup
direction="rowReverse"
alignItems="center"
style={{ isolation: 'isolate' }}
responsive={false}
>
<EuiFlexItem grow={false}>
<EuiButton
fill
Expand Down

0 comments on commit 68d80a2

Please sign in to comment.