@xuda.io/runtime-bundle 1.0.815 → 1.0.816

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.
@@ -27840,9 +27840,12 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
27840
27840
  for await (const [key, val] of Object.entries(nodeP.children)) {
27841
27841
  const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $div, nodeP.children[key], parent_infoP, paramsP, jobNoP, is_skeleton, Number(key), null, nodeP, null, $root_container);
27842
27842
  }
27843
- return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
27843
+ // return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
27844
27844
  // }, 1000);
27845
27845
  }
27846
+ setTimeout(async () => {
27847
+ return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
27848
+ }, 2000);
27846
27849
  },
27847
27850
  };
27848
27851