@xuda.io/runtime-bundle 1.0.765 → 1.0.767

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.
@@ -3320,11 +3320,11 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
3320
3320
  }
3321
3321
  ///// REFRESH SCREEN
3322
3322
  if (!avoid_refresh && fields_changed.length) {
3323
- await func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_changed);
3323
+ await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed));
3324
3324
  // await removed from the below function cause to dead lock Mar 3 25
3325
3325
  await func.UI.screen.refresh_screen(
3326
3326
  SESSION_ID,
3327
- fields_changed,
3327
+ _.cloneDeep(fields_changed),
3328
3328
  null,
3329
3329
  datasource_changed[0], // refresh the current datasource only
3330
3330
  );
@@ -3320,11 +3320,11 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
3320
3320
  }
3321
3321
  ///// REFRESH SCREEN
3322
3322
  if (!avoid_refresh && fields_changed.length) {
3323
- await func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_changed);
3323
+ await func.UI.screen.refresh_xu_attributes(SESSION_ID, _.cloneDeep(fields_changed));
3324
3324
  // await removed from the below function cause to dead lock Mar 3 25
3325
3325
  await func.UI.screen.refresh_screen(
3326
3326
  SESSION_ID,
3327
- fields_changed,
3327
+ _.cloneDeep(fields_changed),
3328
3328
  null,
3329
3329
  datasource_changed[0], // refresh the current datasource only
3330
3330
  );