Disable emitDataRequest from explore (#23926)

This commit is contained in:
Jon Gyllenswärd 2020-04-27 15:32:40 +02:00 committed by GitHub
parent 1a0c1a39e4
commit 9f04f8001f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}