Skip to content

Commit

Permalink
Send map filters through so it get picked up by both kuery and lucene (
Browse files Browse the repository at this point in the history
  • Loading branch information
Bargs authored Aug 1, 2017
1 parent ee52de7 commit bdf6c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core_plugins/tile_map/public/maps_visualization.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export function MapsVisualizationProvider(serviceSettings, Notifier, getAppState
const filter = { meta: { negate: false, index: indexPatternName } };
filter[filterName] = { ignore_unmapped: true };
filter[filterName][field] = filterData;
getAppState().filters.push(filter);
getAppState().$newFilters = [filter];
this.vis.updateState();
}

Expand Down

0 comments on commit bdf6c32

Please sign in to comment.