@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.
@@ -33877,8 +33877,8 @@ func.UI.screen.execute_xu_functions = async function (
33877
33877
  if (field_prop.props.fieldType === "object" && !val_is_reference_field) {
33878
33878
  let obj_item = new_arr[arr_idx]
33879
33879
  let e_exp = bind_field_exp.replace("@_FOR_VAL", "obj_item");
33880
- let new_val = eval(e_exp)
33881
- new_arr[arr_idx] = new_val
33880
+ let new_val = eval(e_exp + `="${value}"`)
33881
+ new_arr[arr_idx] = obj_item
33882
33882
  } else {
33883
33883
  new_arr[arr_idx] = value
33884
33884
  }