@dmlibs/dm-cmps 0.1.33 → 0.1.35
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.
|
@@ -1754,10 +1754,7 @@ class DmTable {
|
|
|
1754
1754
|
if (col.type && ['actions', '$index', 'component', 'customHtml'].includes(col.type))
|
|
1755
1755
|
return false;
|
|
1756
1756
|
const cellValue = this.resolveCellValue(row, col);
|
|
1757
|
-
|
|
1758
|
-
console.log({ col, cellValue, term });
|
|
1759
|
-
}
|
|
1760
|
-
return cellValue != null && cellValue.toString().includes(term);
|
|
1757
|
+
return cellValue != null && cellValue.toString().toLowerCase().includes(term);
|
|
1761
1758
|
});
|
|
1762
1759
|
if (this.enableSperatedSearch()) {
|
|
1763
1760
|
const terms = filterLower
|