ods-component-lib 1.18.66 → 1.18.67

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.
@@ -16765,13 +16765,11 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
16765
16765
  props.axiosRequest.requestData.PaginatedRequest.PageSize = props.pageSize;
16766
16766
  }
16767
16767
  if (props.axiosRequest.requestQueryString !== undefined) {
16768
- var queryParams = queryString.parse(props.axiosRequest.requestQueryString);
16769
- queryParams.maxResultCount = props.pageSize.toString();
16770
- var query = props.axiosRequest.requestQueryString;
16768
+ props.axiosRequest.requestQueryString.maxResultCount = props.pageSize;
16771
16769
  if (loadedPageCount > 1 && totalPageCount >= loadedPageCount) {
16772
- queryParams.skipCount = ((loadedPageCount - 1) * props.pageSize).toString();
16770
+ props.axiosRequest.requestQueryString.skipCount = ((loadedPageCount - 1) * props.pageSize).toString();
16773
16771
  }
16774
- query = queryString.stringify(queryParams);
16772
+ var query = queryString.stringify(props.axiosRequest.requestQueryString);
16775
16773
  apiUrl = apiUrl + "?" + query;
16776
16774
  }
16777
16775
  var requestOptions = {