@megha-ui/react 1.2.423 → 1.2.424
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.
|
@@ -229,9 +229,9 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
229
229
|
return true;
|
|
230
230
|
}
|
|
231
231
|
})
|
|
232
|
-
: filterColumns.some((column) => {
|
|
232
|
+
: filterColumns.filter(column => { var _a; return (_a = searchQueries[column.key]) === null || _a === void 0 ? void 0 : _a.text; }).some((column) => {
|
|
233
233
|
var _a, _b, _c;
|
|
234
|
-
const query = (
|
|
234
|
+
const query = (_a = searchQueries[column.key]) === null || _a === void 0 ? void 0 : _a.text;
|
|
235
235
|
const queryData = query.toLowerCase().split(",");
|
|
236
236
|
const value = item[column.key] && item[column.key].value
|
|
237
237
|
? (_b = item[column.key].value) === null || _b === void 0 ? void 0 : _b.toString()
|
package/package.json
CHANGED