@megha-ui/react 1.2.144 → 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.
|
@@ -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