@xuda.io/runtime-bundle 1.0.278 → 1.0.280

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.
@@ -14508,8 +14508,8 @@ func.UI.screen.execute_xu_functions = async function (
14508
14508
  if (field_prop.props.fieldType === "object" && !val_is_reference_field) {
14509
14509
  let obj_item = new_arr[arr_idx]
14510
14510
  let e_exp = bind_field_exp.replace("@_FOR_VAL", "obj_item");
14511
- let new_val = eval(e_exp)
14512
- new_arr[arr_idx] = new_val
14511
+ let new_val = eval(e_exp + `="${value}"`)
14512
+ new_arr[arr_idx] = obj_item
14513
14513
  } else {
14514
14514
  new_arr[arr_idx] = value
14515
14515
  }
@@ -11918,8 +11918,8 @@ func.UI.screen.execute_xu_functions = async function (
11918
11918
  if (field_prop.props.fieldType === "object" && !val_is_reference_field) {
11919
11919
  let obj_item = new_arr[arr_idx]
11920
11920
  let e_exp = bind_field_exp.replace("@_FOR_VAL", "obj_item");
11921
- let new_val = eval(e_exp)
11922
- new_arr[arr_idx] = new_val
11921
+ let new_val = eval(e_exp + `="${value}"`)
11922
+ new_arr[arr_idx] = obj_item
11923
11923
  } else {
11924
11924
  new_arr[arr_idx] = value
11925
11925
  }