@xuda.io/runtime-bundle 1.0.526 → 1.0.528
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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -9247,6 +9247,7 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
|
|
|
9247
9247
|
};
|
|
9248
9248
|
|
|
9249
9249
|
func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
|
|
9250
|
+
return;
|
|
9250
9251
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
9251
9252
|
|
|
9252
9253
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
@@ -13733,7 +13734,7 @@ func.UI.screen.panel_post_render_handler = async function (
|
|
|
13733
13734
|
} else {
|
|
13734
13735
|
$.each($wrapper.children(), function (key, child) {
|
|
13735
13736
|
$.each($container.children(), function (key, elm) {
|
|
13736
|
-
if ($(elm)
|
|
13737
|
+
if ($(elm)?.data()?.xuData && $(elm)?.data()?.xuData?.elem_key === $(child)?.data()?.xuData?.elem_key) {
|
|
13737
13738
|
$(elm).remove();
|
|
13738
13739
|
}
|
|
13739
13740
|
});
|
|
@@ -9248,6 +9248,7 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
|
|
|
9248
9248
|
};
|
|
9249
9249
|
|
|
9250
9250
|
func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
|
|
9251
|
+
return;
|
|
9251
9252
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
9252
9253
|
|
|
9253
9254
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
@@ -11465,7 +11466,7 @@ func.UI.screen.panel_post_render_handler = async function (
|
|
|
11465
11466
|
} else {
|
|
11466
11467
|
$.each($wrapper.children(), function (key, child) {
|
|
11467
11468
|
$.each($container.children(), function (key, elm) {
|
|
11468
|
-
if ($(elm)
|
|
11469
|
+
if ($(elm)?.data()?.xuData && $(elm)?.data()?.xuData?.elem_key === $(child)?.data()?.xuData?.elem_key) {
|
|
11469
11470
|
$(elm).remove();
|
|
11470
11471
|
}
|
|
11471
11472
|
});
|