@castlabs/ui 4.21.0 → 4.22.0

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.
@@ -843,7 +843,11 @@ function clTableSorterObjects (
843
843
  ) {
844
844
  return clTableSorter((col, order) => {
845
845
  return {
846
- sorted: clPaginate(clSort(dataCallback, keys[col], order), pageNoCallback(), pageSizeCallback()),
846
+ sorted: clPaginate(
847
+ clSort(dataCallback, keys[col], order),
848
+ pageNoCallback(),
849
+ pageSizeCallback()
850
+ ),
847
851
  sortedOrder: order
848
852
  }
849
853
  }, initialCol)