mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Making sure we do not pass a long invalid queries and save to state
This commit is contained in:
parent
edfce0893e
commit
08f5a3338a
@ -538,6 +538,7 @@ export function runQueries(exploreId: ExploreId) {
|
||||
|
||||
if (!hasNonEmptyQuery(modifiedQueries)) {
|
||||
dispatch({ type: ActionTypes.RunQueriesEmpty, payload: { exploreId } });
|
||||
dispatch(stateSave()); // Remember to saves to state and update location
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -173,8 +173,9 @@ export default class LokiLanguageProvider extends LanguageProvider {
|
||||
})
|
||||
);
|
||||
}
|
||||
// Return a cleaned LokiQuery
|
||||
return queries.map(query => ({
|
||||
...query,
|
||||
refId: query.refId,
|
||||
expr: '',
|
||||
}));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user