@xuda.io/xuda-worker-bundle-min 1.3.968 → 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.
- package/index.js +4 -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
|