@xuda.io/runtime-bundle 1.0.277 → 1.0.279
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.
|
@@ -33876,9 +33876,9 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
33876
33876
|
let new_arr = reference_source_obj.ret.value
|
|
33877
33877
|
if (field_prop.props.fieldType === "object" && !val_is_reference_field) {
|
|
33878
33878
|
let obj_item = new_arr[arr_idx]
|
|
33879
|
-
let e_exp = bind_field_exp.replace("@_FOR_VAL", obj_item);
|
|
33880
|
-
let new_val = eval(e_exp)
|
|
33881
|
-
new_arr[arr_idx] =
|
|
33879
|
+
let e_exp = bind_field_exp.replace("@_FOR_VAL", "obj_item");
|
|
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
|
}
|