Commit 5c6adbba by David Committed by GitHub

Merge pull request #12630 from grafana/davkal/explore-empty-error

Dont parse empty explore state from url
parents 05e060de f67b27e0
...@@ -33,18 +33,20 @@ function makeTimeSeriesList(dataList, options) { ...@@ -33,18 +33,20 @@ function makeTimeSeriesList(dataList, options) {
}); });
} }
function parseInitialState(initial) { function parseInitialState(initial: string | undefined) {
try { if (initial) {
const parsed = JSON.parse(decodePathComponent(initial)); try {
return { const parsed = JSON.parse(decodePathComponent(initial));
datasource: parsed.datasource, return {
queries: parsed.queries.map(q => q.query), datasource: parsed.datasource,
range: parsed.range, queries: parsed.queries.map(q => q.query),
}; range: parsed.range,
} catch (e) { };
console.error(e); } catch (e) {
return { queries: [], range: DEFAULT_RANGE }; console.error(e);
}
} }
return { datasource: null, queries: [], range: DEFAULT_RANGE };
} }
interface IExploreState { interface IExploreState {
......
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