ods-component-lib 1.18.47 → 1.18.48

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.
package/dist/index.js CHANGED
@@ -16721,7 +16721,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
16721
16721
  var renderTotalPaging = React.useCallback(function () {
16722
16722
  var result = "";
16723
16723
  if (totalPageCount > 1) {
16724
- result = props.customSummary.summaryTotalPageCountLabel + (":" + loadedPageCount + " / " + totalPageCount);
16724
+ result = props.customSummary.summaryTotalPageCountLabel + (" " + loadedPageCount + " / " + totalPageCount);
16725
16725
  }
16726
16726
  return result;
16727
16727
  }, [loadedPageCount, totalPageCount]);
@@ -16990,7 +16990,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
16990
16990
  displayFormat: "customizeText",
16991
16991
  customizeText: renderTotal
16992
16992
  }), React__default.createElement(DataGrid.TotalItem, {
16993
- column: columns[columns.length - 1].dataField,
16993
+ column: columns[2].dataField,
16994
16994
  summaryType: "custom",
16995
16995
  displayFormat: "customizeText",
16996
16996
  customizeText: renderTotalPaging