Dont parse empty explore state from url

- only parse url state if there is any
- prevents parse exception in the console on empty explore state
pull/12630/head
David Kaltschmidt 7 years ago
parent a1f0dffe01
commit f67b27e009
  1. 24
      public/app/containers/Explore/Explore.tsx

@ -31,18 +31,20 @@ function makeTimeSeriesList(dataList, options) {
});
}
function parseInitialState(initial) {
try {
const parsed = JSON.parse(decodePathComponent(initial));
return {
datasource: parsed.datasource,
queries: parsed.queries.map(q => q.query),
range: parsed.range,
};
} catch (e) {
console.error(e);
return { queries: [], range: DEFAULT_RANGE };
function parseInitialState(initial: string | undefined) {
if (initial) {
try {
const parsed = JSON.parse(decodePathComponent(initial));
return {
datasource: parsed.datasource,
queries: parsed.queries.map(q => q.query),
range: parsed.range,
};
} catch (e) {
console.error(e);
}
}
return { datasource: null, queries: [], range: DEFAULT_RANGE };
}
interface IExploreState {

Loading…
Cancel
Save