@xuda.io/xuda-worker-bundle-min 1.3.869 → 1.3.871
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 +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2282,6 +2282,8 @@ func.datasource.execute = async function (
|
|
|
2282
2282
|
_ds.v.raw_data = { rows: [] };
|
|
2283
2283
|
}
|
|
2284
2284
|
|
|
2285
|
+
_ds.data_feed.rows = [];
|
|
2286
|
+
|
|
2285
2287
|
switch (prog_obj.progDataSource?.dataSourceType) {
|
|
2286
2288
|
case "table":
|
|
2287
2289
|
_ds._dataSourceTableId = prog_obj.progDataSource?.dataSourceTableId; // get file id
|
|
@@ -2486,6 +2488,7 @@ func.datasource.execute = async function (
|
|
|
2486
2488
|
"after_record"
|
|
2487
2489
|
);
|
|
2488
2490
|
};
|
|
2491
|
+
|
|
2489
2492
|
let _raw_data_rows = [];
|
|
2490
2493
|
switch (tree_obj.menuType) {
|
|
2491
2494
|
case "api": {
|
|
@@ -2737,7 +2740,7 @@ func.datasource.execute = async function (
|
|
|
2737
2740
|
_ds.viewRangeExp_rows_deleted = 0;
|
|
2738
2741
|
|
|
2739
2742
|
let rows = _ds?.v.raw_data?.rows?.length;
|
|
2740
|
-
|
|
2743
|
+
|
|
2741
2744
|
_ds.data_feed.rows_changed = [];
|
|
2742
2745
|
_ds.data_feed.rows_deleted = [];
|
|
2743
2746
|
_ds.data_feed.rows_added = [];
|