@xuda.io/runtime-bundle 1.0.761 → 1.0.763

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.
@@ -32271,12 +32271,12 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32271
32271
  let new_arr = reference_source_obj.ret.value;
32272
32272
  // if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
32273
32273
  if (field_prop.props.fieldType === 'object' && val_is_reference_field) {
32274
- let obj_item = new_arr[arr_idx];
32274
+ let obj_item = _.clone(new_arr[arr_idx]);
32275
32275
  // let e_exp = bind_field_exp.replace('@' + bind_field_id, 'obj_item');
32276
32276
  // let new_val = eval(e_exp + `="${value}"`);
32277
32277
  let e_exp = val.value.replace(bind_field_id, 'obj_item');
32278
32278
 
32279
- let new_val = eval(e_exp + input_field_type === 'string' ? `="${value}"` : `=${value}`);
32279
+ let new_val = eval(e_exp + (input_field_type === 'string' ? `="${value}"` : `=${value}`));
32280
32280
 
32281
32281
  new_arr[arr_idx] = obj_item;
32282
32282
  } else {