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