@xuda.io/runtime-bundle 1.0.266 → 1.0.268

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,
@@ -35615,7 +35617,7 @@ func.UI.screen.render_ui_tree = async function (
35615
35617
  SESSION_ID,
35616
35618
  $divP,
35617
35619
  nodeP.children[key],
35618
- parent_infoP,
35620
+ null,
35619
35621
  paramsP,
35620
35622
  jobNoP,
35621
35623
  is_skeleton,