Commit 9f04f800 by Jon Gyllenswärd Committed by GitHub

Disable emitDataRequest from explore (#23926)

parent 1a0c1a39
......@@ -18,6 +18,10 @@ export function emitDataRequestEvent(datasource: DataSourceApi) {
return;
}
if (data.request.exploreMode) {
return;
}
if (data.state !== LoadingState.Done && data.state !== LoadingState.Error) {
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment