@xuda.io/runtime-bundle 1.0.765 → 1.0.766

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.
@@ -12599,7 +12599,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12599
12599
  if (reference_source_obj.ret.type === 'array') {
12600
12600
  if (iterate_info.iterator_val === bind_field_id) {
12601
12601
  const arr_idx = Number($elm?.data()?.xuData?.iterate_info._key);
12602
- let new_arr = _.clone(reference_source_obj.ret.value);
12602
+ let new_arr = _.cloneDeep(reference_source_obj.ret.value);
12603
12603
  // if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
12604
12604
  if (field_prop.props.fieldType === 'object' && val_is_reference_field) {
12605
12605
  let obj_item = new_arr[arr_idx];
@@ -10309,7 +10309,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10309
10309
  if (reference_source_obj.ret.type === 'array') {
10310
10310
  if (iterate_info.iterator_val === bind_field_id) {
10311
10311
  const arr_idx = Number($elm?.data()?.xuData?.iterate_info._key);
10312
- let new_arr = _.clone(reference_source_obj.ret.value);
10312
+ let new_arr = _.cloneDeep(reference_source_obj.ret.value);
10313
10313
  // if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
10314
10314
  if (field_prop.props.fieldType === 'object' && val_is_reference_field) {
10315
10315
  let obj_item = new_arr[arr_idx];