@xuda.io/runtime-bundle 1.0.603 → 1.0.604
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.
|
@@ -27820,7 +27820,14 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27820
27820
|
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
27821
27821
|
}
|
|
27822
27822
|
|
|
27823
|
-
$elm.empty();
|
|
27823
|
+
// $elm.empty();
|
|
27824
|
+
|
|
27825
|
+
$.each($elm.children(), (key, val) => {
|
|
27826
|
+
if ($(val).data.xuData.id === queue_obj?.paramsP?.xu_for_item_id) {
|
|
27827
|
+
$(val).remove();
|
|
27828
|
+
}
|
|
27829
|
+
});
|
|
27830
|
+
|
|
27824
27831
|
let _data = queue_obj.paramsP.elem_val.$elm.data();
|
|
27825
27832
|
const node_to_render = _data.xuData.node_org.children?.find((e) => e.id === queue_obj?.paramsP?.xu_for_item_id);
|
|
27826
27833
|
func.UI.screen.render_ui_tree(
|