Skip to content
Snippets Groups Projects
Unverified Commit 07c91cd6 authored by Nick Fitzpatrick's avatar Nick Fitzpatrick Committed by GitHub
Browse files

Removing / fixing warnings when updating a dashboard filter and when you have...

Removing / fixing warnings when updating a dashboard filter and when you have incorrect link templates (#28174)
parent de5d7511
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,6 @@ function renderTemplateForClick( ...@@ -61,7 +61,6 @@ function renderTemplateForClick(
if (valueAndColumn) { if (valueAndColumn) {
return formatFunction(valueAndColumn); return formatFunction(valueAndColumn);
} }
console.warn("Missing value for " + name);
return ""; return "";
}, },
); );
......
...@@ -140,9 +140,9 @@ class Visualization extends React.PureComponent { ...@@ -140,9 +140,9 @@ class Visualization extends React.PureComponent {
: null; : null;
const series = transformed && transformed.series; const series = transformed && transformed.series;
const visualization = transformed && transformed.visualization; const visualization = transformed && transformed.visualization;
const computedSettings = series const computedSettings = !this.isLoading(series)
? getComputedSettingsForSeries(series) ? getComputedSettingsForSeries(series)
: null; : {};
this.setState({ this.setState({
hovered: null, hovered: null,
error: null, error: null,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment