@xuda.io/xuda-worker-bundle-min 1.3.2271 → 1.3.2272
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 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1652,7 +1652,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
1652
1652
|
_ds.data_feed = {};
|
|
1653
1653
|
|
|
1654
1654
|
// _ds.v.old_dataSource = _.cloneDeep(_ds);
|
|
1655
|
-
_ds.v.old_dataSource = klona(_ds);
|
|
1655
|
+
_ds.v.old_dataSource = klona.klona(_ds);
|
|
1656
1656
|
} catch (err) {
|
|
1657
1657
|
console.error('function: init_existing_dataSource - error');
|
|
1658
1658
|
return;
|
|
@@ -3283,11 +3283,11 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
3283
3283
|
}
|
|
3284
3284
|
|
|
3285
3285
|
// await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh, trigger);
|
|
3286
|
-
await func.UI.screen.refresh_xu_attributes(SESSION_ID, klona(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh, trigger);
|
|
3286
|
+
await func.UI.screen.refresh_xu_attributes(SESSION_ID, klona.klona(fields_changed), null, null, findMin(datasource_changed), avoid_xu_for_refresh, trigger);
|
|
3287
3287
|
// await removed from the below function cause to dead lock Mar 3 25
|
|
3288
3288
|
await func.UI.screen.refresh_screen(
|
|
3289
3289
|
SESSION_ID,
|
|
3290
|
-
klona(fields_changed), // _.cloneDeep(fields_changed),
|
|
3290
|
+
klona.klona(fields_changed), // _.cloneDeep(fields_changed),
|
|
3291
3291
|
null,
|
|
3292
3292
|
datasource_changed[0], // refresh the current datasource only
|
|
3293
3293
|
);
|
|
@@ -3939,7 +3939,7 @@ func.datasource.set_VIEW_data = async function (SESSION_ID, args, _ds) {
|
|
|
3939
3939
|
_ds.viewEventExec_arr = {};
|
|
3940
3940
|
|
|
3941
3941
|
// var view = _.cloneDeep(await func.utils.VIEWS_OBJ.get(SESSION_ID, args.prog_id));
|
|
3942
|
-
var view = klona(await func.utils.VIEWS_OBJ.get(SESSION_ID, args.prog_id));
|
|
3942
|
+
var view = klona.klona(await func.utils.VIEWS_OBJ.get(SESSION_ID, args.prog_id));
|
|
3943
3943
|
|
|
3944
3944
|
_ds.v.dataSourceSrcType = view.dataSourceSrcType;
|
|
3945
3945
|
|