@xuda.io/xuda-worker-bundle-min 1.3.1062 → 1.3.1064
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/index.js +8 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1532,6 +1532,7 @@ glb.attr_abbreviations_arr = [
|
|
|
1532
1532
|
"xu-blur",
|
|
1533
1533
|
"xu-init",
|
|
1534
1534
|
];
|
|
1535
|
+
glb.solid_attributes = ["disabled"];
|
|
1535
1536
|
func.datasource = {};
|
|
1536
1537
|
func.datasource.create = async function (
|
|
1537
1538
|
SESSION_ID,
|
|
@@ -2181,10 +2182,15 @@ func.datasource.execute = async function (
|
|
|
2181
2182
|
_ds.v.batch_loops = await get_limit();
|
|
2182
2183
|
return false;
|
|
2183
2184
|
}
|
|
2185
|
+
// _ds.v.batch_loops =
|
|
2186
|
+
// (await get_limit()) <= _ds.data_feed?.rows?.length
|
|
2187
|
+
// ? await get_limit()
|
|
2188
|
+
// : _ds?.data_feed?.rows?.length;
|
|
2189
|
+
|
|
2184
2190
|
_ds.v.batch_loops =
|
|
2185
|
-
(await get_limit()) <= _ds.
|
|
2191
|
+
(await get_limit()) <= _ds.v.raw_data?.rows?.length
|
|
2186
2192
|
? await get_limit()
|
|
2187
|
-
: _ds?.
|
|
2193
|
+
: _ds.v.raw_data?.rows?.length;
|
|
2188
2194
|
return true;
|
|
2189
2195
|
// _ds.v.batch_loops =
|
|
2190
2196
|
// (await get_limit()) <= _ds.v?.raw_data?.rows?.length
|