@xuda.io/runtime-bundle 1.0.266 → 1.0.267

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.
@@ -34184,18 +34184,20 @@ func.UI.screen.execute_xu_functions = async function (
34184
34184
  is_val_dynamic_field,
34185
34185
  reference_source_obj
34186
34186
  };
34187
- if (parent_infoP) {
34188
- parent_infoP.iterate_info = iterate_info;
34189
- } else {
34190
- parent_infoP = {
34191
- iterate_info,
34192
- };
34193
- }
34187
+ let _parent_info = parent_infoP || {}
34188
+ _parent_info.iterate_info = iterate_info
34189
+ // if (parent_infoP) {
34190
+ // _parent_info = iterate_info;
34191
+ // } else {
34192
+ // _parent_info = {
34193
+ // iterate_info,
34194
+ // };
34195
+ // }
34194
34196
  const $divP = await func.UI.screen.render_ui_tree(
34195
34197
  SESSION_ID,
34196
34198
  $container,
34197
34199
  nodeP,
34198
- parent_infoP ? _.cloneDeep(parent_infoP) : null,
34200
+ _parent_info,//parent_infoP ? _.cloneDeep(_parent_info) : null,
34199
34201
  paramsP,
34200
34202
  jobNoP,
34201
34203
  null,