diff --git a/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx b/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx index c12ea3374e..d7f49cda41 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx @@ -211,15 +211,15 @@ class ChartHolder extends React.Component { } // figure out if this chart is in the focused filter's scope - const { chartId } = component.meta; - const isFocusedFilterChart = - focusedFilterScope && chartId === focusedFilterScope.chartId; - const includedInFilterScope = - focusedFilterScope && - !isFocusedFilterChart && - getChartIdsInFilterScope({ - filterScope: focusedFilterScope.scope, - }).includes(chartId); + // const { chartId } = component.meta; + // const isFocusedFilterChart = + // focusedFilterScope && chartId === focusedFilterScope.chartId; + // const includedInFilterScope = + // focusedFilterScope && + // !isFocusedFilterChart && + // getChartIdsInFilterScope({ + // filterScope: focusedFilterScope.scope, + // }).includes(chartId); return (