igniteui-angular 12.1.9 → 12.1.10

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.
@@ -40781,6 +40781,9 @@
40781
40781
  var displayKey = this.displayKey;
40782
40782
  var matchFn = function (e) {
40783
40783
  var value = displayKey ? e[displayKey] : e;
40784
+ if (value === undefined || value === null) {
40785
+ return false;
40786
+ }
40784
40787
  return value.toString().toLowerCase() === _this.searchValue.trim().toLowerCase();
40785
40788
  };
40786
40789
  var itemMatch = this.filteredData.some(matchFn);