@indigina/ui-kit 1.1.323 → 1.1.324

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.
@@ -6940,7 +6940,7 @@ const convertFilterStringDate = (filters) => filters.map(filter => {
6940
6940
  });
6941
6941
  const removeReadonlyPropertyFromFilters = (filters) => filters.map(({ readonly, ...item }) => item);
6942
6942
  const kitBuildFilterListOptions = (enumObject) => {
6943
- return Object.keys(enumObject).map(item => ({
6943
+ return Object.values(enumObject).map(item => ({
6944
6944
  title: item,
6945
6945
  value: item,
6946
6946
  checked: false,