Skip to content

Commit

Permalink
fixing vis filters to ignore invalid entries (elastic#30633) (elastic…
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar authored Feb 12, 2019
1 parent eb702b6 commit e8a38e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/legacy/ui/public/vis/vis_filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const VisFiltersProvider = (Private, getAppState) => {
const dataPoints = event.data;
const filters = [];

dataPoints.forEach(val => {
dataPoints.filter(point => point).forEach(val => {
const { table, column, row, value } = val;
const filter = createFilter(event.aggConfigs, table, column, row, value);
if (filter) {
Expand Down

0 comments on commit e8a38e3

Please sign in to comment.