Skip to content

Commit

Permalink
fix: correctly parse non-array key filters
Browse files Browse the repository at this point in the history
  • Loading branch information
silvester-pari committed Aug 23, 2023
1 parent ba1d1bd commit 0ac2141
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions elements/itemfilter/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ export class EOxItemFilter extends TemplateElement {
(<SpatialFilterObject>filterKeys).geometry = undefined;
(<SpatialFilterObject>filterKeys).mode =
(<SpatialFilterObject>filterProperty).mode || "intersects";
} else {
filterKeys[item[filterProperty.key]] = undefined;
}
}
});
Expand Down

0 comments on commit 0ac2141

Please sign in to comment.