@indigina/ui-kit 1.1.346 → 1.1.347

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.
@@ -7182,7 +7182,8 @@ const kitFetchGridData = ({ store, destroyRef, isLoading, fetchAction, fetchFrom
7182
7182
  };
7183
7183
  const kitFetchExportGridData = ({ fetchAction, fetchIndexAction, total, sort, filter, search, }) => {
7184
7184
  if (search) {
7185
- return fetchIndexAction(0, total, kitBuildSortString(sort), kitBuildOdataFilter(kitBuildFilters(filter)), search);
7185
+ const searchTerm = kitFormatStringForSearch(search);
7186
+ return fetchIndexAction(0, total, kitBuildSortString(sort), kitBuildOdataFilter(kitBuildFilters(filter)), searchTerm);
7186
7187
  }
7187
7188
  return fetchAction(0, total, kitBuildSortString(sort), kitBuildOdataFilter(kitBuildFilters(filter)));
7188
7189
  };