mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Enable search also after editing
This commit is contained in:
parent
6b9200a606
commit
9293ff06cd
@ -140,7 +140,7 @@ class LokiQueryField extends React.PureComponent<LokiQueryFieldProps, LokiQueryF
|
|||||||
};
|
};
|
||||||
|
|
||||||
onChangeQuery = (value: string, override?: boolean) => {
|
onChangeQuery = (value: string, override?: boolean) => {
|
||||||
const firstModified = this.modifiedQuery === undefined;
|
const enableSearchField = !this.modifiedQuery && value;
|
||||||
this.modifiedQuery = value;
|
this.modifiedQuery = value;
|
||||||
// Send text change to parent
|
// Send text change to parent
|
||||||
const { initialQuery, onQueryChange } = this.props;
|
const { initialQuery, onQueryChange } = this.props;
|
||||||
@ -154,7 +154,7 @@ class LokiQueryField extends React.PureComponent<LokiQueryFieldProps, LokiQueryF
|
|||||||
onQueryChange(query, override);
|
onQueryChange(query, override);
|
||||||
}
|
}
|
||||||
// Enable the search field if we have a selector query
|
// Enable the search field if we have a selector query
|
||||||
if (firstModified) {
|
if (enableSearchField) {
|
||||||
this.forceUpdate();
|
this.forceUpdate();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user