akeyless-client-commons 1.0.188 → 1.0.190
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/dist/components/index.js
CHANGED
|
@@ -1725,11 +1725,7 @@ var TableProvider = function(props) {
|
|
|
1725
1725
|
return allKeys.filter(function(val) {
|
|
1726
1726
|
return !noneSearchKeys.includes(val);
|
|
1727
1727
|
}).some(function(key) {
|
|
1728
|
-
|
|
1729
|
-
if (res) {
|
|
1730
|
-
console.log("searching ".concat(key, " with value ").concat(item[key], " and result is ").concat(res));
|
|
1731
|
-
}
|
|
1732
|
-
return res;
|
|
1728
|
+
return cleanString(String(item[key])).includes(normalizedSearchQuery);
|
|
1733
1729
|
});
|
|
1734
1730
|
});
|
|
1735
1731
|
}
|
|
@@ -1509,11 +1509,7 @@ var TableProvider = function(props) {
|
|
|
1509
1509
|
return allKeys.filter(function(val) {
|
|
1510
1510
|
return !noneSearchKeys.includes(val);
|
|
1511
1511
|
}).some(function(key) {
|
|
1512
|
-
|
|
1513
|
-
if (res) {
|
|
1514
|
-
console.log("searching ".concat(key, " with value ").concat(item[key], " and result is ").concat(res));
|
|
1515
|
-
}
|
|
1516
|
-
return res;
|
|
1512
|
+
return cleanString(String(item[key])).includes(normalizedSearchQuery);
|
|
1517
1513
|
});
|
|
1518
1514
|
});
|
|
1519
1515
|
}
|