@dmlibs/dm-cmps 0.1.34 → 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,11 +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
|
-
if (this.enableLogs()) {
|
|
1759
|
-
console.log({ col, cellValue, term, match });
|
|
1760
|
-
}
|
|
1761
|
-
return match;
|
|
1757
|
+
return cellValue != null && cellValue.toString().toLowerCase().includes(term);
|
|
1762
1758
|
});
|
|
1763
1759
|
if (this.enableSperatedSearch()) {
|
|
1764
1760
|
const terms = filterLower
|