Skip to content

Commit

Permalink
move back query language switcher
Browse files Browse the repository at this point in the history
Signed-off-by: Kawika Avilla <[email protected]>
  • Loading branch information
kavilla committed Apr 1, 2024
1 parent 15742f1 commit 20c7dde
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -626,12 +626,6 @@ export default class QueryStringInputUI extends Component<Props, State> {
return (
<div className={className}>
{this.props.prepend}
<QueryLanguageSwitcher
language={this.props.query.language}
anchorPosition={this.props.languageSwitcherPopoverAnchorPosition}
onSelectLanguage={this.onSelectLanguage}
/>

<EuiOutsideClickDetector onOutsideClick={this.onOutsideClick}>
<div
{...ariaCombobox}
Expand Down Expand Up @@ -709,6 +703,12 @@ export default class QueryStringInputUI extends Component<Props, State> {
</EuiPortal>
</div>
</EuiOutsideClickDetector>

<QueryLanguageSwitcher
language={this.props.query.language}
anchorPosition={this.props.languageSwitcherPopoverAnchorPosition}
onSelectLanguage={this.onSelectLanguage}
/>
</div>
);
}
Expand Down

0 comments on commit 20c7dde

Please sign in to comment.