ets-fe-ng-sdk 20.3.19 → 20.3.20
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.
|
@@ -6763,7 +6763,7 @@ class FilterFormArrayGroupPipe {
|
|
|
6763
6763
|
* @returns Filter function for FormGroups
|
|
6764
6764
|
*/
|
|
6765
6765
|
this.filterFunc = (_queryObject, exactMatch) => (group) => {
|
|
6766
|
-
const queryObject = _queryObject.filter((x) => x.value != null);
|
|
6766
|
+
const queryObject = _queryObject.filter((x) => x.value != null && x.value != '');
|
|
6767
6767
|
if (!queryObject || queryObject.length === 0)
|
|
6768
6768
|
return true;
|
|
6769
6769
|
const formGroupValue = group.getRawValue();
|