datastake-daf 0.6.740 → 0.6.741
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/components/index.js
CHANGED
|
@@ -5797,7 +5797,7 @@ function DAFTable(_ref) {
|
|
|
5797
5797
|
if (data) {
|
|
5798
5798
|
setSource(data);
|
|
5799
5799
|
}
|
|
5800
|
-
}, [data
|
|
5800
|
+
}, [data]);
|
|
5801
5801
|
const paginationPageSize = pagination === null || pagination === void 0 ? void 0 : pagination.pageSize;
|
|
5802
5802
|
const dataSource = React.useMemo(() => {
|
|
5803
5803
|
const pageSize = paginationPageSize ? paginationPageSize : source.length > 10 ? source.length : 10;
|
package/dist/pages/index.js
CHANGED
|
@@ -15163,7 +15163,7 @@ function DAFTable({
|
|
|
15163
15163
|
if (data) {
|
|
15164
15164
|
setSource(data);
|
|
15165
15165
|
}
|
|
15166
|
-
}, [data
|
|
15166
|
+
}, [data]);
|
|
15167
15167
|
const paginationPageSize = pagination?.pageSize;
|
|
15168
15168
|
const dataSource = React.useMemo(() => {
|
|
15169
15169
|
const pageSize = paginationPageSize ? paginationPageSize : source.length > 10 ? source.length : 10;
|
package/package.json
CHANGED