Skip to content

Commit

Permalink
Update filters array to eval all
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Caldwell committed Jun 24, 2021
1 parent e494100 commit 58887ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class DrawFeatureControl extends Component<Props, {}> {
] as [MbPoint, MbPoint];
const selectedFeatures = this.props.mbMap.queryRenderedFeatures(mbBbox, {
layers: mbEditLayerIds,
filter: [EXCLUDE_TOO_MANY_FEATURES_BOX, EXCLUDE_CENTROID_FEATURES],
filter: ['all', EXCLUDE_TOO_MANY_FEATURES_BOX, EXCLUDE_CENTROID_FEATURES],
});
if (!selectedFeatures.length) {
return;
Expand Down

0 comments on commit 58887ad

Please sign in to comment.