ets-fe-ng-sdk 20.3.18 → 20.3.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6762,7 +6762,8 @@ class FilterFormArrayGroupPipe {
6762
6762
  * @param exactMatch Whether to require exact matches
6763
6763
  * @returns Filter function for FormGroups
6764
6764
  */
6765
- this.filterFunc = (queryObject, exactMatch) => (group) => {
6765
+ this.filterFunc = (_queryObject, exactMatch) => (group) => {
6766
+ const queryObject = _queryObject.filter((x) => x.value != null);
6766
6767
  if (!queryObject || queryObject.length === 0)
6767
6768
  return true;
6768
6769
  const formGroupValue = group.getRawValue();