Commit 744e108b by Ivana Huckova Committed by GitHub

Explore: Run queries when queries imported (#26704)

parent ec783fbf
......@@ -156,6 +156,11 @@ export function changeDatasource(
}
await dispatch(loadDatasource(exploreId, newDataSourceInstance, orgId));
// Exception - we only want to run queries on data source change, if the queries were imported
if (options?.importQueries) {
dispatch(runQueries(exploreId));
}
};
}
......
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