@xuda.io/runtime-bundle 1.0.628 → 1.0.629

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.
@@ -34247,16 +34247,18 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34247
34247
  return (ret.$new_div = $('<template>').append($div));
34248
34248
  }
34249
34249
 
34250
- let ret_done = await done(ret.$new_div);
34250
+ let $ret_panel_div = ret.$new_div;
34251
34251
 
34252
- return ret_done;
34253
-
34254
- ////// render default children tree
34255
- if (nodeP.children.length) {
34256
- const default_children_ret = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP.children[0], parent_infoP, paramsP, jobNoP, null, 0, null, nodeP, null, $root_container);
34257
- debugger;
34258
- await done(default_children_ret);
34252
+ if (!$ret_panel_div.children().length) {
34253
+ ////// render default children tree
34254
+ if (nodeP.children.length) {
34255
+ $ret_panel_div = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP.children[0], parent_infoP, paramsP, jobNoP, null, 0, null, nodeP, null, $root_container);
34256
+ }
34259
34257
  }
34258
+
34259
+ let ret_done = await done($ret_panel_div);
34260
+
34261
+ return ret_done;
34260
34262
  },
34261
34263
  };
34262
34264