Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from DoneByDawson/master
Browse files Browse the repository at this point in the history
fix(inner hits filter): fix inner hits filter for final else case.
  • Loading branch information
ziggornif authored Aug 5, 2021
2 parents 157d7eb + 371db17 commit 6785022
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/kendo-elasticsearch.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/kendo-elasticsearch.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/kendo-elasticsearch.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/kendo-elasticsearch.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kendo-elasticsearch",
"version": "3.1.0",
"version": "3.1.1",
"description": "A Kendo DataSource extension so you can load data into your [Kendo UI Grid](http://docs.telerik.com/kendo-ui/api/javascript/ui/grid) from an [ElasticSearch](https://www.elasticsearch.org/) index.",
"main": "dist/kendo-elasticsearch.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/es-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function _manageBooleanFilter(nestedPath, subType, booleanFilter) {
not: childFilter.not.has_parent.filter
};
} else {
return _innerHitsFilter(nestedPath, childFilter);
return _innerHitsFilter(nestedPath, subType, childFilter);
}
});
}
Expand Down

0 comments on commit 6785022

Please sign in to comment.