@megha-ui/react 1.2.143 → 1.2.145
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.
|
@@ -202,7 +202,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
202
202
|
if (query) {
|
|
203
203
|
return parseFloat(value) < parseFloat(query);
|
|
204
204
|
}
|
|
205
|
-
return;
|
|
205
|
+
return true;
|
|
206
206
|
case "lte":
|
|
207
207
|
if (query) {
|
|
208
208
|
return parseFloat(value) <= parseFloat(query);
|
|
@@ -278,7 +278,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
278
278
|
if (query) {
|
|
279
279
|
return parseFloat(value) < parseFloat(query);
|
|
280
280
|
}
|
|
281
|
-
return;
|
|
281
|
+
return true;
|
|
282
282
|
case "lte":
|
|
283
283
|
if (query) {
|
|
284
284
|
return parseFloat(value) <= parseFloat(query);
|
package/package.json
CHANGED