Explore: Fixes error when switching from prometheus to loki data sources (#18599)

Closes #18594
Closes #18596
This commit is contained in:
kay delaney
2019-08-16 15:10:22 +01:00
committed by GitHub
parent f3d1543e9f
commit bf82e6cded

View File

@@ -115,7 +115,7 @@ export class QueryField extends React.PureComponent<QueryFieldProps, QueryFieldS
if (initialQuery !== prevProps.initialQuery) {
// and we have a version that differs
if (initialQuery !== Plain.serialize(value)) {
this.setState({ value: makeValue(initialQuery, syntax) });
this.setState({ value: makeValue(initialQuery || '', syntax) });
}
}