@addsign/moje-agenda-shared-lib 2.0.61 → 2.0.63

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.
@@ -21786,6 +21786,18 @@ function DataTableServer({
21786
21786
  return JSON.stringify(dep) !== JSON.stringify(prevDepsRef.current[index]);
21787
21787
  });
21788
21788
  if (hasChanged) {
21789
+ console.log(
21790
+ "setting reloadData - actual change detected",
21791
+ url,
21792
+ showColFilters,
21793
+ columnFilters,
21794
+ itemsPerPageLocal,
21795
+ currentPage,
21796
+ sortConfig,
21797
+ filters,
21798
+ tableKey,
21799
+ reloadData
21800
+ );
21789
21801
  setReloadData(true);
21790
21802
  }
21791
21803
  prevDepsRef.current = currentDeps;
@@ -21800,6 +21812,7 @@ function DataTableServer({
21800
21812
  tableKey
21801
21813
  ]);
21802
21814
  useEffect(() => {
21815
+ console.log("reloadData", reloadData);
21803
21816
  if (reloadData) {
21804
21817
  if (abortControllerRef.current) {
21805
21818
  abortControllerRef.current.abort();
@@ -21946,6 +21959,11 @@ function DataTableServer({
21946
21959
  }
21947
21960
  setFilterOptions(newFilterOptions);
21948
21961
  };
21962
+ console.log(
21963
+ "updateFilterOptions - actual change detected",
21964
+ columns,
21965
+ federationContext.apiClient
21966
+ );
21949
21967
  updateFilterOptions();
21950
21968
  }
21951
21969
  prevFilterDepsRef.current = currentFilterDeps;