Skip to content

Commit

Permalink
Fixes bug in FilterUtil
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVolland committed Jan 22, 2019
1 parent 067aa4d commit 30ebc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Util/FilterUtil.ts
Expand Up @@ -94,7 +94,7 @@ class FilterUtil {
}
let matchesFilter: boolean = true;
const operator: Operator = filter[0];
const isNestedFilter = FilterUtil.nestingOperators.includes[operator];
const isNestedFilter = FilterUtil.nestingOperators.includes(operator);

if (isNestedFilter) {
matchesFilter = FilterUtil.handleNestedFilter(filter, feature);
Expand Down

0 comments on commit 30ebc32

Please sign in to comment.