mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ML] Stops new line on enter key press for KQL query bars (#90960)
This commit is contained in:
parent
c058d9b024
commit
4881306419
3 changed files with 3 additions and 3 deletions
|
@ -150,7 +150,7 @@ export const ExplorationQueryBar: FC<ExplorationQueryBarProps> = ({
|
|||
<EuiFlexGroup alignItems="center">
|
||||
<EuiFlexItem>
|
||||
<QueryStringInput
|
||||
bubbleSubmitEvent={true}
|
||||
bubbleSubmitEvent={false}
|
||||
query={searchInput}
|
||||
indexPatterns={[indexPattern]}
|
||||
onChange={searchChangeHandler}
|
||||
|
|
|
@ -110,7 +110,7 @@ export const SearchPanel: FC<Props> = ({
|
|||
closePopover={() => setErrorMessage(undefined)}
|
||||
input={
|
||||
<QueryStringInput
|
||||
bubbleSubmitEvent={true}
|
||||
bubbleSubmitEvent={false}
|
||||
query={searchInput}
|
||||
indexPatterns={[indexPattern]}
|
||||
onChange={searchChangeHandler}
|
||||
|
|
|
@ -155,7 +155,7 @@ export const ExplorerQueryBar: FC<ExplorerQueryBarProps> = ({
|
|||
closePopover={() => setErrorMessage(undefined)}
|
||||
input={
|
||||
<QueryStringInput
|
||||
bubbleSubmitEvent
|
||||
bubbleSubmitEvent={false}
|
||||
query={searchInput}
|
||||
indexPatterns={[indexPattern]}
|
||||
onChange={searchChangeHandler}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue