@megha-ui/react 1.2.22 → 1.2.24

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.
@@ -999,7 +999,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
999
999
  acc[column.key] = query.text;
1000
1000
  }
1001
1001
  else if (uniqueSearch[column.key] &&
1002
- uniqeValues.toString() !== uniqueSearch[column.key].sort().toString()) {
1002
+ uniqeValues.toString() !== uniqueSearch[column.key].toString()) {
1003
1003
  acc[column.key] = uniqueSearch[column.key].join(",");
1004
1004
  }
1005
1005
  return acc;
@@ -1015,7 +1015,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
1015
1015
  }
1016
1016
  else if (uniqueSearch[column.key] &&
1017
1017
  uniqeValues.toString() !==
1018
- uniqueSearch[column.key].sort().toString()) {
1018
+ uniqueSearch[column.key].toString()) {
1019
1019
  acc[column.key] = uniqueSearch[column.key].join(",");
1020
1020
  }
1021
1021
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.2.22",
3
+ "version": "1.2.24",
4
4
  "description": "A collection of reusable UI components for React applications, built with TypeScript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",