Skip to content

Commit

Permalink
fix(CrossFilters): Check for deleted filter
Browse files Browse the repository at this point in the history
  • Loading branch information
geido committed Oct 4, 2024
1 parent d2314e3 commit 7fbb688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/dashboard/util/getRelatedCharts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function getRelatedCharts(
),
};
}
if (!filter.filterType) {
if (!filter.filterType && Object.keys(slices).includes(filterKey)) {
return {
...acc,
[filterKey]: getRelatedChartsForCrossFilter(
Expand Down

0 comments on commit 7fbb688

Please sign in to comment.