@xuda.io/xuda-worker-bundle-min 1.3.969 → 1.3.970

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.
Files changed (2) hide show
  1. package/index.js +4 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2657,12 +2657,14 @@ func.datasource.execute = async function (
2657
2657
 
2658
2658
  if (tree_obj.crudMode === "U") {
2659
2659
  _ds.set_mode = "U";
2660
- _raw_data_rows = get_data_from_data_feed(); // _ds?.raw_data?.rows || [];
2660
+ // _raw_data_rows = get_data_from_data_feed(); // _ds?.raw_data?.rows || [];
2661
+ _raw_data_rows = _ds?.v.raw_data?.rows || [];
2661
2662
  }
2662
2663
 
2663
2664
  if (tree_obj.crudMode === "D") {
2664
2665
  _ds.set_mode = "D";
2665
- _raw_data_rows = get_data_from_data_feed(); // _ds.raw_data?.rows || [];
2666
+ // _raw_data_rows = get_data_from_data_feed(); // _ds.raw_data?.rows || [];
2667
+ _raw_data_rows = _ds?.v.raw_data?.rows || [];
2666
2668
  }
2667
2669
 
2668
2670
  // initiated with Update but no rows found
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-worker-bundle-min",
3
- "version": "1.3.969",
3
+ "version": "1.3.970",
4
4
  "description": "xuda framework min",
5
5
  "main": "index.js",
6
6
  "scripts": {