@xuda.io/runtime-bundle 1.0.776 → 1.0.778

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.
@@ -27848,6 +27848,7 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
27848
27848
  };
27849
27849
 
27850
27850
  func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
27851
+ return;
27851
27852
  let _session = SESSION_OBJ[SESSION_ID];
27852
27853
 
27853
27854
  const _data_system = _session?.DS_GLB?.[0]?.data_system;
@@ -27901,6 +27902,7 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
27901
27902
  }
27902
27903
  };
27903
27904
  func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
27905
+ return;
27904
27906
  if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
27905
27907
  // let dom to finish build
27906
27908
  return;
@@ -32274,7 +32276,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32274
32276
  const arr_idx = Number($elm?.data()?.xuData?.iterate_info._key);
32275
32277
  // let new_arr = _.cloneDeep(reference_source_obj.ret.value);
32276
32278
  const dataset_arr = await func.datasource.get_value(SESSION_ID, reference_source_obj.fieldIdP, _dsP, reference_source_obj.currentRecordId);
32277
- let new_arr = _.cloneDeep(dataset_arr);
32279
+ let new_arr = _.cloneDeep(dataset_arr.ret.value);
32278
32280
  // if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
32279
32281
  if (field_prop.props.fieldType === 'object' && val_is_reference_field) {
32280
32282
  let obj_item = new_arr[arr_idx];