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.
- package/bundles/igniteui-angular.umd.js +3 -0
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo.component.js +4 -1
- package/fesm2015/igniteui-angular.js +3 -0
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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);
|